mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-23 20:10:41 +08:00
9 lines
202 B
JavaScript
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 />
|
|
))
|