(react) add Modal

Here it is! Our really wanted Modal component, based on Figma sketches.
This commit is contained in:
Nathan Vasse
2024-01-18 14:38:48 +01:00
committed by NathanVss
parent 81e4da1d36
commit 1445f4a222
32 changed files with 1723 additions and 111 deletions

View File

@@ -3,7 +3,7 @@ import {
Button,
DataGrid,
SortModel,
ToastType,
VariantType,
usePagination,
useToastProvider,
} from "@openfun/cunningham-react";
@@ -119,7 +119,10 @@ export const Home = ({ changePage }: PageProps) => {
);
database.splice(index, 1);
setRefresh(refresh + 1);
toast("Character deleted successfully", ToastType.WARNING);
toast(
"Character deleted successfully",
VariantType.WARNING,
);
}}
icon={<span className="material-icons">delete</span>}
/>