UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

8 lines (7 loc) 329 B
import * as React from 'react'; import { ThemeProvider } from 'styled-components'; import theme from '../../theme'; import { Wizard } from './Wizard'; const AdaptableWizardView = (props) => (React.createElement(ThemeProvider, { theme: theme }, React.createElement(Wizard, { ...props }))); export default AdaptableWizardView;