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