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