7 lines
154 B
Python
7 lines
154 B
Python
from ..widget_component import WidgetComponent
|
|
|
|
|
|
class Radio(WidgetComponent[dict]):
|
|
def __init__(self, props: dict):
|
|
super().__init__(props)
|