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

9 lines
206 B
JavaScript

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