import { H1, H2, H3, H4 } from '@meetfranz/ui'; import { storiesOf } from '../stores/stories'; // interface IStoreArgs { // value?: boolean; // checked?: boolean; // label?: string; // id?: string; // name?: string; // disabled?: boolean; // error?: string; // } // const createStore = (args?: IStoreArgs) => { // return observable(Object.assign({ // id: `element-${uuid()}`, // name: 'toggle', // label: 'Label', // value: true, // checked: false, // disabled: false, // error: '', // }, args)); // }; // const WithStoreToggle = observer(({ store }: { store: any }) => ( // <> // store.checked = !store.checked} // /> // // )); storiesOf('Typo').add('Headlines', () => ( <>

Welcome to the world of tomorrow

Welcome to the world of tomorrow

Welcome to the world of tomorrow

Welcome to the world of tomorrow

));