Skip to content

Commit

Permalink
Merge pull request #1571 from storybooks/make-ondeviceui-default
Browse files Browse the repository at this point in the history
Make onDeviceUI default for RN getstorybook
  • Loading branch information
shilman authored Aug 1, 2017
2 parents d527512 + 52ef042 commit 21fcfbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ configure(() => {

// This assumes that storybook is running on the same host as your RN packager,
// to set manually use, e.g. host: 'localhost' option
const StorybookUI = getStorybookUI({ port: 7007 });
const StorybookUI = getStorybookUI({ port: 7007, onDeviceUI: true });
AppRegistry.registerComponent('%APP_NAME%', () => StorybookUI);
export default StorybookUI;
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ configure(() => {

// This assumes that storybook is running on the same host as your RN packager,
// to set manually use, e.g. host: 'localhost' option
const StorybookUI = getStorybookUI({ port: 7007 });
const StorybookUI = getStorybookUI({ port: 7007, onDeviceUI: true });
export default StorybookUI;

0 comments on commit 21fcfbe

Please sign in to comment.