import { Suspense } from 'react' import useSWR from 'swr' function Profile () { const { data } = useSWR('/api/user', fetcher, { suspense: true }) return ...
確定! 回上一頁