Skip to content

Instantly share code, notes, and snippets.

@itelo
Created May 5, 2020 21:20
Show Gist options
  • Select an option

  • Save itelo/73ad63dd31c3d89404d9ecfc4a20fe11 to your computer and use it in GitHub Desktop.

Select an option

Save itelo/73ad63dd31c3d89404d9ecfc4a20fe11 to your computer and use it in GitHub Desktop.
import React from 'react';
import {storiesOf} from '@storybook/react-native';
import Button from './Button';
storiesOf('Button', module)
.add('default button', () => <Button>Hello Storybook</Button>)
.add('button with prop color = red', () => (
<Button color="red">Hello Storybook</Button>
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment