This commit is contained in:
Jayden Pyles
2024-05-18 18:45:59 -05:00
commit c2659662e5
21 changed files with 21083 additions and 0 deletions

16
src/Layout.tsx Normal file
View File

@@ -0,0 +1,16 @@
import React from "react";
import { ReactJSXElement } from "@emotion/react/types/jsx-namespace";
interface LayoutProps {
children: ReactJSXElement;
}
const Layout: React.FC<LayoutProps> = ({ children }) => {
return (
<>
<div>{children}</div>
</>
);
};
export default Layout;