import { ComponentPropsWithoutRef, Ref } from "react"; import classNames from "classnames"; interface PageProps extends ComponentPropsWithoutRef<"div"> { noTopPadding?: boolean; pageRef?: Ref; } export default function Page({ noTopPadding, pageRef, className, children }: PageProps) { return (
{children}
); }