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