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