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