kenken999's picture
test
d8bbcde
raw
history blame
197 Bytes
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)