import { MantineProvider, mergeThemeOverrides } from '@mantine/core'; import { Notifications } from '@mantine/notifications'; import { emaTheme } from '@ema-platform/shared'; import { maritimeLoaderTheme } from '@ema-platform/ui'; import type { ReactNode } from 'react'; const theme = mergeThemeOverrides(emaTheme, maritimeLoaderTheme); export function MantineThemeProvider({ children }: { children: ReactNode }) { return ( {children} ); }