Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
retopara
/
ragflow
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c9b34c6
ragflow
/
web
/
src
/
layouts
/
next.tsx
balibabu
Feat: Add dataset sidebar #3221 (#3683)
ccb514f
5 months ago
raw
Copy download link
history
blame
198 Bytes
import
{
Outlet
}
from
'umi'
;
import
{
Header
}
from
'./next-header'
;
export
default
function
NextLayout
(
) {
return
(
<
section
>
<
Header
>
</
Header
>
<
Outlet
/>
</
section
>
);
}