$ npm install
$ npm run wp-env start
$ npm run start
dispatch = wp.data.dispatch( 'my-async-store' );
select = wp.data.select( 'my-async-store' );
select.getTitle() // 'Some title'
dispatch.updateTitle('Another title')
select.getTitle() // 'Another title'