15 lines
331 B
TypeScript
15 lines
331 B
TypeScript
'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>
|
|
);
|
|
};
|