import React from "react"; type Props = { children: React.ReactNode; className?: string; }; export function Page({ children, className }: Props) { return (
{children}
); }