feat: init
This commit is contained in:
12
apps/web/ce/components/projects/create/template-select.tsx
Normal file
12
apps/web/ce/components/projects/create/template-select.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
type TProjectTemplateDropdownSize = "xs" | "sm";
|
||||
|
||||
export type TProjectTemplateSelect = {
|
||||
disabled?: boolean;
|
||||
size?: TProjectTemplateDropdownSize;
|
||||
placeholder?: string;
|
||||
dropDownContainerClassName?: string;
|
||||
handleModalClose: () => void;
|
||||
};
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
export const ProjectTemplateSelect = (props: TProjectTemplateSelect) => <></>;
|
||||
Reference in New Issue
Block a user