File size: 188 Bytes
f7197e2
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

class TextInputComponent:
    def __init__(self):
        self.component = gr.Textbox(label="Text Input")

    def get_value(self):
        return self.component.value