Cretate delete project confirm dialog

This commit is contained in:
Takeshi Kimata
2024-05-26 13:11:06 +09:00
parent 8832d9b9e7
commit 691684e9b7
9 changed files with 70 additions and 16 deletions

View File

@@ -16,7 +16,7 @@ import { ProjectType, ProjectsMessages } from '@/types/project';
type Props = {
isOpen: boolean;
editingProject: ProjectType;
editingProject: ProjectType | null;
onCancel: () => void;
onSubmit: (name: string, detail: string, isPublic: boolean) => void;
messages: ProjectsMessages;