import { Dialog, DialogFooter, DialogType, PrimaryButton } from '@fluentui/react'; import { observer } from "mobx-react-lite"; import { PropsWithChildren } from 'react'; import { globalState } from '../state'; export const ErrorDialogProvider = observer((props: PropsWithChildren<{}>) => { return ( <> {props.children} ); });