mirror of
https://github.com/explosion/spaCy.git
synced 2025-03-18 00:52:20 +03:00
10 lines
133 B
TypeScript
10 lines
133 B
TypeScript
const Layout = (args) => {
|
|
return (
|
|
<>
|
|
<div>{args.children}</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default Layout
|