15 lines
482 B
TypeScript
15 lines
482 B
TypeScript
import { getServerSession } from "next-auth";
|
|
import { authOptions } from "app/_lib/auth";
|
|
import { getUserVisualizations } from "@/app/_lib/opensearch";
|
|
import { Home } from "@/app/_components/Home";
|
|
|
|
export default async function Page() {
|
|
const session = await getServerSession(authOptions);
|
|
const { user: { email } }: any = session;
|
|
const visualizations = await getUserVisualizations(
|
|
email ?? "none",
|
|
20
|
|
);
|
|
|
|
return <Home visualizations={visualizations} />;
|
|
}
|