Bootstrap alert component. ```jsx import {useState} from 'react'; function AlertExample(){ const [alert, setAlert] = useState(true); if (alert) return setAlert(false)} />; return ; }; ```