mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-12-14 11:46:17 +00:00
17 lines
298 B
TypeScript
17 lines
298 B
TypeScript
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;
|