DEPRECATED
use bem-react-core and bem-react-components instead.
Обертка над React с синтаксисом bh
- BEM
- Button
- Checkbox
- Check-button
- Icon
- Image
- Link
- Radiobox
- Radio-button
- Popup - WIP
- пока всё =)
Внутри как-то так:
module.exports = function(bh) {
bh.match('checkbox', function(ctx, json) {
ctx
.muMods({
checked: ctx.mod('checked')
})
.bind({
onChange: function(e) {
ctx.muMod('checked', e.target.checked)
}
})
})
}