12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
import { Component, ReactNode } from "react";
|
|
|
|
interface IPickerListProps {}
|
|
|
|
class PickerList extends Component<IPickerListProps> {
|
|
|
|
public render(): ReactNode {
|
|
return <div></div>
|
|
}
|
|
}
|
|
|
|
export { PickerList } |