import React from
'react'
;
import Alert from
'@mui/material/Alert'
;
import AlertTitle from
'@mui/material/AlertTitle'
;
export
default
function
App() {
return
(
<div className=
"App"
style={{ margin: 100 }}>
<h1 style={{ color:
'green'
}}>
GeeksforGeeks
</h1>
<h3>
<u>React MUI AlertTitle API</u>
</h3>
<Alert severity=
"success"
>
<AlertTitle>Title 1</AlertTitle>
<strong> This is an success alert
with
a title.
</strong>
</Alert><br />
<Alert severity=
"error"
>
<AlertTitle>Title 2</AlertTitle>
<strong> This is an error alert
with
a title.
</strong>
</Alert><br />
<Alert severity=
"warning"
>
<AlertTitle>Title 3</AlertTitle>
<strong> This is an warning alert
with
a title.
</strong>
</Alert><br />
<Alert severity=
"info"
>
<AlertTitle>Title 4</AlertTitle>
<strong> This is an info alert
with
a title.
</strong>
</Alert>
</div>
);
}