From dc93f0b3dea1d40e00018b59edbbe47794d88a9d Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Mon, 18 Mar 2019 22:33:23 -0400 Subject: [PATCH] Add the raw method to the react-native implementation to satisfy storyshots --- app/react-native/src/index.js | 1 + app/react-native/src/preview/index.js | 1 + 2 files changed, 2 insertions(+) diff --git a/app/react-native/src/index.js b/app/react-native/src/index.js index a0abc7bf62d..7da4d7a188a 100644 --- a/app/react-native/src/index.js +++ b/app/react-native/src/index.js @@ -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); diff --git a/app/react-native/src/preview/index.js b/app/react-native/src/preview/index.js index feb161060ab..6b075a12df8 100644 --- a/app/react-native/src/preview/index.js +++ b/app/react-native/src/preview/index.js @@ -28,6 +28,7 @@ export default class Preview { 'addParameters', 'clearDecorators', 'getStorybook', + 'raw', ].forEach(method => { this[method] = this._clientApi[method].bind(this._clientApi); });