Skip to content

Instantly share code, notes, and snippets.

@iskenxan
Last active May 29, 2021 12:49
Show Gist options
  • Save iskenxan/fba385c3217a58b2a30b03ae3770fbfd to your computer and use it in GitHub Desktop.
Save iskenxan/fba385c3217a58b2a30b03ae3770fbfd to your computer and use it in GitHub Desktop.
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