Skip to content
Snippets Groups Projects

Listview

Merged aelias requested to merge listview into master
4 files
+ 11
11
Compare changes
  • Side-by-side
  • Inline
Files
4
import m from 'mithril';
import { Checkbox } from 'polythene-mithril';
import { CheckboxCSS } from 'polythene-css';
// import { CheckboxCSS } from 'polythene-css';
CheckboxCSS.addStyle('.my-checkbox', {});
// CheckboxCSS.addStyle('.my-checkbox', {});
export default class CheckboxComponent {
constructor() {
this.defaultProps = {
className: 'my-checkbox',
label: 'Unnamed checkbox',
// className: 'my-checkbox',
// label: 'Unnamed checkbox',
};
}
Loading