Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 1x 1x | import { createProject } from '@/entities/project/model';
import { ProjectModalBase } from '@/entities/project/ui/_shared';
import { UI_LABELS } from '@/shared/constants';
interface Props {
onClose: () => void;
}
export const CreateProjectModal = ({ onClose }: Props) => (
<ProjectModalBase
data-testid="create-modal"
title={UI_LABELS.MODAL_CREATE}
buttonLabel={UI_LABELS.MODAL_CREATE_BUTTON}
onClose={onClose}
showCanvasInputs={true}
buildArgs={(name, width, height) => ({ name, width, height })}
onSubmitAction={async (dispatch, args) => {
await dispatch(createProject(args)).unwrap();
}}
/>
);
|