Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abidlabs/multipage
abidlabs
/
multipage-ssr
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2136932
multipage-ssr
/
app.py
abidlabs
HF Staff
Update app.py
2136932
verified
5 months ago
raw
Copy download link
history
blame
Safe
214 Bytes
import
gradio
as
gr
import
main_page, second_page
with
gr.Blocks()
as
demo:
main_page.demo.render()
with
demo.route(
"Second Page"
):
second_page.demo.render()
if
__name__ ==
"__main__"
:
demo.launch()