mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:11:08 +08:00
Merge pull request #6182 from storybooks/fix/react-native-storyshots-fix
fix: Add the raw method to the react-native implementation
This commit is contained in:
commit
81b1e30838
1
app/react-native/src/index.js
vendored
1
app/react-native/src/index.js
vendored
@ -10,3 +10,4 @@ export const clearDecorators = preview.clearDecorators.bind(preview);
|
||||
export const configure = preview.configure.bind(preview);
|
||||
export const getStorybook = preview.getStorybook.bind(preview);
|
||||
export const getStorybookUI = preview.getStorybookUI.bind(preview);
|
||||
export const raw = preview.raw.bind(preview);
|
||||
|
1
app/react-native/src/preview/index.js
vendored
1
app/react-native/src/preview/index.js
vendored
@ -28,6 +28,7 @@ export default class Preview {
|
||||
'addParameters',
|
||||
'clearDecorators',
|
||||
'getStorybook',
|
||||
'raw',
|
||||
].forEach(method => {
|
||||
this[method] = this._clientApi[method].bind(this._clientApi);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user