File size: 331 Bytes
f2e9a59 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 'use client';
import { ReactNode } from 'react';
import {
DecisionEverywhere,
ModalManager,
} from '@gitroom/frontend/components/layout/new-modal';
export const MantineWrapper = (props: { children: ReactNode }) => {
return (
<ModalManager>
<DecisionEverywhere />
{props.children}
</ModalManager>
);
};
|