1
0
mirror of https://github.com/yldio/copilot.git synced 2025-01-09 18:40:12 +02:00
copilot/ui/src/components/form/checkbox.js

16 lines
270 B
JavaScript
Raw Normal View History

2017-02-20 18:15:36 +02:00
const composers = require('../../shared/composers');
const BaseInput = require('./base-input');
const Toggle = require('./toggle');
const {
Baseline
} = composers;
const Checkbox = Toggle({
type: 'checkbox'
});
module.exports = Baseline(
BaseInput(Checkbox)
);