export const Root: FC<PropsWithChildren> = ({ children }) => (
  <div className="flex h-screen min-h-full flex-col">{children}</div>
);