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