import React, { useState } from "react"; import styles from "./styles.module.css"; import BoxedCheckIcon from "../icons/boxedCheck"; const Alert = (props) => { const [hide, setHide] = useState(false); const handleHide = () => { setHide(true); setTimeout(() => { props.setTriggerAlert(false); }, 250); }; return (
Create New Service
You are about to add a new record. Please review the details before continuing. Do you want to proceed?