The mantine ui kit bindings for react-declarative
Link to the playground
import "@mantine/core/styles.css";
import "@mantine/dates/styles.css";
import { MantineProvider } from "@mantine/core";
import { OneSlotFactory } from "react-declarative-mantine";
const wrappedApp = (
<MantineProvider>
<OneSlotFactory>
<App />
</OneSlotFactory>
</MantineProvider>
);