add button

This commit is contained in:
Shin'ya Ueoka 2017-11-25 15:08:41 +09:00
parent df10208ed5
commit 5070006193
4 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import './add-button.scss';
import { h, Component } from 'preact';
class AddButton extends Component {
render() {
return <input
className='ui-add-button' type='button' value='Add'
{...this.props} />;
}
}
export default AddButton;