DataFrameTest / app.py
Krebzonide's picture
Update app.py
a54ef95 verified
raw
history blame
200 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()