mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-12-16 20:56:03 +00:00
init
This commit is contained in:
16
src/Layout.tsx
Normal file
16
src/Layout.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user