diff --git a/apps/portal/src/components/questions/CreatListDialog.tsx b/apps/portal/src/components/questions/CreatListDialog.tsx new file mode 100644 index 00000000..64af7e2d --- /dev/null +++ b/apps/portal/src/components/questions/CreatListDialog.tsx @@ -0,0 +1,48 @@ +import { Button, Dialog } from '@tih/ui'; + +export type CreateListDialogProps = { + onCancel: () => void; + onCreate: () => void; + show: boolean; +}; + +export default function CreateListDialog({ + show, + onCancel, + onCreate, +}: CreateListDialogProps) { + return ( + +
+
+ +
+ + + +
+
+ ); +}