Files
react-native-web/examples/demos/Game2048/Game2048Example.js
Nicolas Gallagher 88b184d540 Reorganize examples
2016-08-19 14:03:55 -07:00

9 lines
202 B
JavaScript

import React from 'react';
import { storiesOf, action } from '@kadira/storybook';
import Game2048 from './Game2048'
storiesOf('demo: Game2048', module)
.add('the game', () => (
<Game2048 />
))