UNPKG
test-crud
Version:
latest (1.2.5)
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
es una prueba acerca de como publicar un package name
test-crud
/
components
/
forms
/
AppError.jsx
8 lines
(5 loc)
•
183 B
JSX
View Raw
1
2
3
4
5
6
7
8
import
Alert
from
"@mui/material/Alert"
;
const
AppError
= (
{ show =
false
, children }
) => {
return
show &&
<
Alert
severity
=
"error"
>
{children}
</
Alert
>
; };
export
default
AppError
;