postiz-app/libraries/react-shared-libraries/src/helpers/mantine.wrapper.tsx

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>
);
};