Fixed typo

old
@soyjavi 2015-11-10 19:06:13 +07:00
parent f4d2db466d
commit ae95446735
3 changed files with 5 additions and 3 deletions

View File

@ -68,9 +68,9 @@ class Row extends React.Component {
renderCellSelectable () {
if (this.props.onSelect) {
return (
<th className={style.selectable}>
<td className={style.selectable}>
<Checkbox onChange={this.handleSelectChange} checked={this.props.selected}/>
</th>
</td>
);
}
}

View File

@ -11,6 +11,8 @@ const InputTest = () => (
<Input type='text' label='Disabled field' disabled />
<Input type='tel' label='With icon' icon='phone' />
<Input type='email' label='With icon' icon='email' />
<Input type='date' label='Date' />
<Input type='time' label='Time' />
</section>
);

View File

@ -35,7 +35,7 @@ const _hrefProject = () => {
const Root = () => (
<App className={style.app}>
<AppBarToolbox fixed flat className={style.app_bar}>
<h1>React Toolbox <small>Spec 0.11.3</small></h1>
<h1>React Toolbox <small>Spec 0.11.4</small></h1>
<ButtonToolbox
accent
className={style.github}