5 lines
243 B
JavaScript
Executable File
5 lines
243 B
JavaScript
Executable File
import { getSession } from "@/lib/auth";
|
|
export default async function Page(){
|
|
const { user } = await getSession();
|
|
return <div className="rounded-2xl p-5 bg-white">Drawings — list/table (ต่อเชื่อม backend)</div>;
|
|
} |