import useSWR, { mutate } from "swr" function Profile() { const { data: user } = useSWR("currentUser") return ( <div> <h2>{user.name}</h2> ...
確定! 回上一頁