comissions-app-ui/pages/profile.tsx

33 lines
713 B
TypeScript
Raw Permalink Normal View History

2024-02-10 20:33:24 -05:00
import { withPageAuthRequired } from "@auth0/nextjs-auth0/client";
import { User } from "../interfaces";
type ProfileCardProps = {
user: User;
};
const ProfileCard = ({ user }: ProfileCardProps) => {
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>
</>
);
};
const Profile = ({ user, isLoading }) => {
return (
2024-02-15 22:18:20 -05:00
<>
{isLoading ? <>Loading</> : <ProfileCard user={user} />}
</>
2024-02-10 20:33:24 -05:00
);
};
// Protected route, checking user authentication client-side.(CSR)
export default withPageAuthRequired(Profile);