AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
import React from 'react'
export default function Layout({ children }) {
return (
<html>
<head>
<title>My App</title>
</head>
<body>{children}</body>
</html>
)
}