import * as React from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import Alert from "@mui/material/Alert"; import Stack from "@mui/material/Stack"; import AlertTitle from '@mui/material/AlertTitle'; const DescriptionAlerts = () => { return ( <> Description Alerts Error This is an error alert — check it out! Warning This is a warning alert — check it out! Info This is an info alert — check it out! Success This is a success alert — check it out! ); }; export default DescriptionAlerts;