import { JSX } from "preact"; const NAV_ITEM_CLASSES = "flex justify-center items-center px-4 py-2 text-blue-500 hover:bg-purple-700"; export function Page(props: JSX.HTMLAttributes) { return (
{props.children}
); }