import * as React from 'react'; import { PanelGroup, PanelGroupProps, PanelGroupState } from './PanelGroup'; export class Accordion extends React.Component { constructor(props: PanelGroupProps, context?) { super(props, context); } render() { const { accordion, ...props } = this.props; return ( {this.props.children} ); } }