import React from 'react'; import Head from 'next/head'; export type PageBaseProps = { children?: React.ReactNode; flex?: boolean; }; const PageBase = (props: PageBaseProps) => { return (
{props.children}
A goofy ahh fork of ragtag-player
); }; export default PageBase;