Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
promptAId
/
Promptaid-VIsion
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a8a8801
Promptaid-VIsion
/
frontend
/
src
/
layouts
/
RootLayout.tsx
SCGR
UI refine & clean up
1686de5
3 months ago
raw
Copy download link
history
blame
201 Bytes
import
{
Outlet
}
from
'react-router-dom'
;
import
HeaderNav
from
'../components/HeaderNav'
;
export
default
function
RootLayout
(
) {
return
(
<>
<
HeaderNav
/>
<
Outlet
/>
</>
);
}