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