diff --git a/components/elements/Alert/index.js b/components/elements/Alert/index.js index 5cccf76..fc0f14d 100644 --- a/components/elements/Alert/index.js +++ b/components/elements/Alert/index.js @@ -1,16 +1,11 @@ -import React from 'react'; +import React from "react"; function alert(props) { let [open, setOpen] = React.useState(true); if (!open) return null; return ( -