Skip to content

Closes #95. Feature/launch page #135

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 8, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
outline basic launch page
  • Loading branch information
ShMcK committed Mar 8, 2020
commit 25ef45e43d859af5a34aa7cc7fe4969813a1f3ab
16 changes: 16 additions & 0 deletions web-app/src/containers/Launch/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import * as React from 'react'

const LaunchPage = () => {
return (
<div>
<span>Welcome To</span>
<h1>CodeRoad</h1>
<div>
<h3>New Tutorial</h3>
<h3>Continue Tutorial</h3>
</div>
</div>
)
}

export default LaunchPage
17 changes: 17 additions & 0 deletions web-app/stories/Launch.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { storiesOf } from '@storybook/react'
import React from 'react'
import { css, jsx } from '@emotion/core'
import SideBarDecorator from './utils/SideBarDecorator'
import Launch from '../src/containers/Launch'

const styles = {
container: {},
}

storiesOf('Launch', module)
.addDecorator(SideBarDecorator)
.add('LaunchPage', () => (
<div css={styles.container}>
<Launch />
</div>
))