This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / providers / mantine.tsx
529 B 20 lines
1'use client'; 2 3import { theme } from '@/styles/theme'; 4import { MantineProvider as BaseProvider } from '@mantine/core'; 5import '@mantine/core/styles.css'; 6import { Notifications } from '@mantine/notifications'; 7import '@mantine/notifications/styles.css'; 8 9interface Props { 10 children: React.ReactNode; 11} 12 13export default function MantineProvider(props: Props) { 14 return ( 15 <BaseProvider theme={theme} forceColorScheme="light"> 16 <Notifications position="bottom-right" /> 17 {props.children} 18 </BaseProvider> 19 ); 20}