mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Pass selected kind and story as args
This commit is contained in:
parent
2772b5363d
commit
18d5aab987
7
dist/client/preview/render.js
vendored
7
dist/client/preview/render.js
vendored
@ -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) {
|
||||
|
@ -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 }) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user