import React from 'react' import Switch from './switch' import { observable } from 'mobx' const store = observable({ checked: false, toggle() { this.checked = !this.checked }, }) export const ComSwitch = () => (