/** * Created by Jeff Fohl on 7/12/16. */ import * as React from 'react'; import * as classNames from 'classnames'; import './styles/numericinput.scss'; interface INumericInputProps { name: string, min: number, max?: number } export class NumericInput extends React.Component { public static defaultProps: INumericInputProps = { min : 0} as INumericInputProps; render(): React.ReactElement { return ( ); } }