Files
2025-06-18 18:11:39 -06:00

13 lines
255 B
TypeScript

import { FC, PropsWithChildren } from "react";
const RootLayout: FC<PropsWithChildren> = ({children}) => {
return (
<html>
<body>
{children}
</body>
</html>
);
};
export default RootLayout;