pagraphcontrol/components/button/index.js
2018-11-13 06:22:31 +03:00

15 lines
221 B
JavaScript

const r = require('r-dom');
const Button = props => r.button({
ref: input => {
if (input && props.autoFocus) {
input.focus();
}
},
className: 'button',
...props,
}, props.children);
module.exports = Button;