File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ import * as React from 'react'
2+
3+ const LaunchPage = ( ) => {
4+ return (
5+ < div >
6+ < span > Welcome To</ span >
7+ < h1 > CodeRoad</ h1 >
8+ < div >
9+ < h3 > New Tutorial</ h3 >
10+ < h3 > Continue Tutorial</ h3 >
11+ </ div >
12+ </ div >
13+ )
14+ }
15+
16+ export default LaunchPage
Original file line number Diff line number Diff line change 1+ import { storiesOf } from '@storybook/react'
2+ import React from 'react'
3+ import { css , jsx } from '@emotion/core'
4+ import SideBarDecorator from './utils/SideBarDecorator'
5+ import Launch from '../src/containers/Launch'
6+
7+ const styles = {
8+ container : { } ,
9+ }
10+
11+ storiesOf ( 'Launch' , module )
12+ . addDecorator ( SideBarDecorator )
13+ . add ( 'LaunchPage' , ( ) => (
14+ < div css = { styles . container } >
15+ < Launch />
16+ </ div >
17+ ) )
You can’t perform that action at this time.
0 commit comments