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