import React, { useCallback } from 'react'; import { useNavigate } from 'react-router-dom'; import { Button, Typography } from '@material-tailwind/react'; import { DeployStep, DeployStatus, } from '../../../../components/projects/create/template/deploy/DeployStep'; import { Stopwatch, setStopWatchOffset, } from '../../../../components/StopWatch'; import ConfirmDialog from '../../../../components/shared/ConfirmDialog'; const Deploy = () => { const [open, setOpen] = React.useState(false); const handleOpen = () => setOpen(!open); const navigate = useNavigate(); const handleCancel = useCallback(() => { navigate('/projects/create/template'); }, []); return (

Deployment started ...

This will halt the deployment and you will have to start the process from scratch.
); }; export default Deploy;