kenken999's picture
m
e2444ac
raw
history blame
188 Bytes
import gradio as gr
class TextInputComponent:
def __init__(self):
self.component = gr.Textbox(label="Text Input")
def get_value(self):
return self.component.value