18 lines
244 B
JavaScript
18 lines
244 B
JavaScript
|
|
const r = require('r-dom');
|
|
|
|
const Label = require('../label');
|
|
|
|
const Checkbox = ({ title, ...props }) => r(Label, {
|
|
title,
|
|
}, [
|
|
r.input({
|
|
...props,
|
|
type: 'checkbox',
|
|
}),
|
|
|
|
...[].concat(props.children),
|
|
]);
|
|
|
|
module.exports = Checkbox;
|