complete toast and notification for keeping data in local storage for filtering and move on next step

This commit is contained in:
2024-06-16 11:34:01 +03:30
parent fd727b9cff
commit 9886ed52db
8 changed files with 138 additions and 59 deletions

View File

@@ -1,8 +1,16 @@
import {Button} from "@mui/material";
import {toast} from "react-toastify";
const Toolbar = ({columns}) => {
const notif = () => {
toast("Wow so easy!")
}
return (
<Button>add something</Button>
<>
<Button onClick={notif}>add something</Button>
</>
)
}
export default Toolbar