Add label picker

This commit is contained in:
2022-03-12 16:33:46 +08:00
parent c84c0b903b
commit f832a5af00
12 changed files with 128 additions and 16 deletions
@@ -0,0 +1,12 @@
import { Component, ReactNode } from "react";
interface IObjectPickerProps {}
class ObjectPicker extends Component<IObjectPickerProps> {
public render(): ReactNode {
return <div></div>
}
}
export { ObjectPicker }