import * as React from 'react'; import * as classNames from 'classnames'; import {SFC} from 'react'; import {Button as StrapButton} from 'reactstrap'; export const Button: SFC = ({children, className, ...otherProps}: any) => ( {children} ); Button.displayName = 'Button';