Auth0 working!
This commit is contained in:
31
web/pages/profile.js
Normal file
31
web/pages/profile.js
Normal file
@@ -0,0 +1,31 @@
|
||||
// This import is only needed when checking authentication status directly from getInitialProps
|
||||
// import auth0 from '../lib/auth0'
|
||||
import { useFetchUser } from "../lib/user";
|
||||
import Layout from "../components/layout";
|
||||
|
||||
function ProfileCard({ user }) {
|
||||
return (
|
||||
<>
|
||||
<h1>Profile</h1>
|
||||
|
||||
<div>
|
||||
<h3>Profile (client rendered)</h3>
|
||||
<img src={user.picture} alt="user picture" />
|
||||
<p>nickname: {user.nickname}</p>
|
||||
<p>name: {user.name}</p>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
function Profile() {
|
||||
const { user, loading } = useFetchUser({ required: true });
|
||||
|
||||
return (
|
||||
<Layout user={user} loading={loading}>
|
||||
{loading ? <>Loading...</> : <ProfileCard user={user} />}
|
||||
</Layout>
|
||||
);
|
||||
}
|
||||
|
||||
export default Profile;
|
||||
Reference in New Issue
Block a user