Skip to content

Instantly share code, notes, and snippets.

@kirkness
Last active April 10, 2018 22:07
Show Gist options
  • Save kirkness/c557d310a2a2803685d63155913b9dce to your computer and use it in GitHub Desktop.
Save kirkness/c557d310a2a2803685d63155913b9dce to your computer and use it in GitHub Desktop.
Example Expobook setup for Medium article
import React from 'react';
import createExpo from 'expobook';
import Button from './components/button';
const expobook = createExpo();
expobook.add('My button', () => <Button>Hello World</Button>);
expobook.add('My other button', () => <Button>Hello World, again</Button>);
export default expobook.build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment