Spaces:
Running
on
Zero
Running
on
Zero
File size: 197 Bytes
d8bbcde |
1 2 3 4 5 6 7 |
import gradio as gr
from views.user_view import UserView
with gr.Blocks() as gradio_interface:
gr.Markdown("CRUD Application")
user_view = UserView()
user_view.render(gradio_interface) |