mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
|
import { FC } from "react";
|
||
|
|
||
|
type TLabelExistingSelect = {};
|
||
|
|
||
|
export const LabelExistingSelect: FC<TLabelExistingSelect> = (props) => {
|
||
|
const {} = props;
|
||
|
|
||
|
return <></>;
|
||
|
};
|