mui-spfx-controls
Version:
SPFx component library built with MUI
11 lines • 471 B
JavaScript
import { __assign } from "tslib";
import { ThemeProvider } from '@mui/material';
import React from 'react';
import { CodeEditor } from '../../components/CodeEditor';
import { theme } from '../../config/theme.config';
var CodeEditorDisplay = function (props) {
return (React.createElement(ThemeProvider, { theme: theme },
React.createElement(CodeEditor, __assign({}, props))));
};
export default CodeEditorDisplay;
//# sourceMappingURL=CodeEditorDisplay.js.map