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) 386 B
import * as React from 'react'; import Panel from '../Panel'; import join from '../utils/join'; const WizardPanel = (props) => { return (React.createElement(Panel, { border: "none", borderRadius: "none", variant: "primary", bodyScroll: true, ...props, className: join(props.className, 'ab-WizardPanel'), style: { height: '100%', ...props.style } })); }; export default WizardPanel;