Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
pngwn/7349-df-repro-fix
abidlabs
/
7349-df-repro-fix-main
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cdba519
7349-df-repro-fix-main
/
app.py
pngwn
HF Staff
Update app.py
045ed70
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
240 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
with
gr.Tab():
gr.HTML(
"<p>hi</p>"
)
with
gr.Tab():
gr.Dataframe(
value=[[i +
1
]
for
i
in
range
(
10
)],
)
if
__name__ ==
"__main__"
:
demo.launch()