Bootstrap alert component. ```jsx import { useState } from "react"; function AlertExample() { const [alert, setAlert] = useState(true); if (alert) return ( setAlert(false)}> Some warning out there! ); return ( setAlert(true)}> Show alert again ); } ; ```