Я использую реагирование, стилидгидиста и редукса.Я пытаюсь задокументировать различные состояния приложения в зависимости от состояния магазина приставки, но игровая площадка, которую создает файл .md, использует только один магазин.Файл .md выглядит следующим образом:
import * as actions from './redux/actions';
import { Provider } from 'react-redux'
import store from './redux/store';
(
<Provider store={store}>
<App />
</Provider>
)
В том же файле .md есть другой блок .js, как в примере [здесь]: (https://react -styleguidist.js.org/docs/documenting.html#usage-examples-and-readme-files) блок:
import * as actions from './redux/actions';
import { Provider } from 'react-redux'
import store from './redux/store';
// the live sample in the styleguidist server updates correctly when dispatching the action
store.dispatch(actions.showConnection(true));
//THE PROBLEM IS THAT THE OTHER SAMPLE (THE ONE ABOVE) ALSO UPDATES) so there is one store for the entire sample
//¿How can I dispatch actions and only update the sample inside each ``` js code?
//¿How can I mock the redux store inside each js block sample in the .md file ?
(
<Provider store={store}>
<App />
</Provider>
)
любая помощь будет оценена.