aliabd's picture
aliabd HF Staff
Upload with huggingface_hub
79fa5d0
raw
history blame
196 Bytes
import gradio as gr
css = "footer {display: none !important;} .gradio-container {min-height: 0px !important;}"
with gr.Blocks(css=css) as demo:
gr.Dataframe(interactive=True)
demo.launch()