living-together/source/Component/PickerList/PickerList.tsx
2022-03-12 16:33:46 +08:00

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 }