DataFrameTest / app.py
Krebzonide's picture
Update app.py
a1ec9c6 verified
raw
history blame
198 Bytes
import gradio as gr
with gr.Blocks as demo:
gr.Dataframe(
headers=["name"],
datatype=["str"],
row_count=5,
col_count=(1, "fixed"))
demo.launch()