import { useState } from 'react' import { Alert, Button } from 'react-bootstrap'; import { faTimes, faExclamationCircle } from "@fortawesome/free-solid-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; export default function AlertDismissibleExample() { const [show, setShow] = useState(true); if (show) { return (
2 candidats minimum
setShow(false)} icon={faTimes} className="mr-2" />
); } return null; }