Skip to content

react-declarative/react-declarative-mantine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ac2e1ca · Jan 20, 2025

History

33 Commits
Sep 4, 2024
Sep 6, 2024
Sep 3, 2024
Jan 20, 2025
Sep 3, 2024
Sep 3, 2024
Sep 3, 2024
Sep 3, 2024
Sep 6, 2024
Sep 3, 2024
Jan 20, 2025
Jan 20, 2025
Sep 9, 2024
Sep 3, 2024
Sep 3, 2024

Repository files navigation

⚛️ react-declarative-mantine

The mantine ui kit bindings for react-declarative

screenshot

Installation

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>
);