UNPKG

test-crud

Version:

es una prueba acerca de como publicar un package name

8 lines (5 loc) 183 B
import Alert from "@mui/material/Alert"; const AppError = ({ show = false, children }) => { return show && <Alert severity="error">{children}</Alert>; }; export default AppError;