spaCy/website/components/layout/index.tsx
2022-12-20 17:46:31 +01:00

10 lines
133 B
TypeScript

const Layout = (args) => {
return (
<>
<div>{args.children}</div>
</>
)
}
export default Layout