mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-16 17:10:12 +00:00
21 lines
448 B
TypeScript
21 lines
448 B
TypeScript
import dynamic from "next/dynamic";
|
|
|
|
const Header = ({ authData }) => {
|
|
const { session, status } = authData;
|
|
|
|
return (
|
|
<>
|
|
<h1>Name: {session?.user?.name}</h1>
|
|
<h1>Status: {status}</h1>
|
|
<h1>Token: {session?.ta_token?.token}</h1>
|
|
<h1>User ID: {session?.ta_token?.user_id}</h1>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export const DynamicHeader = dynamic(() => import("../components/Header"), {
|
|
suspense: true,
|
|
});
|
|
|
|
export default Header;
|