import React from "react";
import { Alert } from "shoto-ui";
function Alerts() {
return (
<div>
<Alert severity="warning">Warning</Alert>
<Alert severity="error">Error</Alert>
<Alert severity="info">Info</Alert>
<Alert severity="success">Success</Alert>
</div>
);
}