'use client'; import { ReactNode } from 'react'; import { DecisionEverywhere, ModalManager, } from '@gitroom/frontend/components/layout/new-modal'; export const MantineWrapper = (props: { children: ReactNode }) => { return ( {props.children} ); };