fix: miss semicolon

This commit is contained in:
bang 2017-07-08 16:46:18 +07:00
parent 3fb21c0325
commit e7013fcb3f

View File

@ -3,7 +3,8 @@ import PropTypes from 'prop-types';
import classNames from 'classnames';
import shallowEqual from 'shallowequal';
import Checkbox from './Checkbox';
export type CheckboxValueType = string | number
export type CheckboxValueType = string | number;
export interface CheckboxOptionType {
label: string;