Last active
May 29, 2021 12:49
-
-
Save iskenxan/fba385c3217a58b2a30b03ae3770fbfd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const initialResource = fetchProfileData(); | |
function ProfilePage() { | |
return ( | |
<Suspense fallback={<h1>Loading profile...</h1>}> | |
<ProfileDetails resource={initialResource} /> | |
</Suspense> | |
); | |
} | |
function ProfileDetails({ resource }) { | |
const user = resource.user.read(); | |
return <h1>{user.name}</h1>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment