10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import { type RadioProps } from '@aurora'
|
|
|
|
import { WidgetComponent } from '../widget-component'
|
|
|
|
export class Radio extends WidgetComponent<RadioProps> {
|
|
constructor(props: RadioProps) {
|
|
super(props)
|
|
}
|
|
}
|