Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { ReactNode } from 'react'
function Layout(props: { foo: ReactNode; bar: ReactNode }) {
return (
<html>
<body>
{props.foo}
{props.bar}
</body>
</html>
)
}
export default Layout