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