import React, { ComponentType } from 'react'; import withAction from './utils/withAction'; import { ButtonProps } from '../../types'; const Selectable: ComponentType = () => { return ( ); }; export default withAction(Selectable);