10 lines
201 B
TypeScript
10 lines
201 B
TypeScript
import type { MantineProviderProps } from "@mantine/core";
|
|
|
|
import { theme } from "./theme";
|
|
|
|
export * from "./components";
|
|
|
|
export const uiConfiguration = {
|
|
theme,
|
|
} satisfies MantineProviderProps;
|