Pass selected kind and story as args

This commit is contained in:
Muhammed Thanish 2016-06-14 13:46:36 +05:30
parent 2772b5363d
commit 18d5aab987
2 changed files with 12 additions and 2 deletions

View File

@ -70,7 +70,12 @@ function renderMain(data, storyStore) {
_reactDom2.default.unmountComponentAtNode(rootEl);
}
return _reactDom2.default.render(story(), rootEl);
var context = {
kind: selectedKind,
story: selectedStory
};
return _reactDom2.default.render(story(context), rootEl);
}
function renderPreview(_ref) {

View File

@ -42,7 +42,12 @@ export function renderMain(data, storyStore) {
ReactDOM.unmountComponentAtNode(rootEl);
}
return ReactDOM.render(story(), rootEl);
const context = {
kind: selectedKind,
story: selectedStory,
};
return ReactDOM.render(story(context), rootEl);
}
export default function renderPreview({ reduxStore, storyStore }) {