import React from "react"; import { WithRouteProps } from "routes"; type Props = { children: React.ReactElement; }; export default function StandalonePage({ children }: Props) { return (
{children}
); }