Skip to content

Feature/tutorial setup #4

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 12 commits into from
Jun 9, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
move components into containers
  • Loading branch information
ShMcK committed Jun 9, 2019
commit 99372b4e9ac156dc3836b1727eba2d8a1e5fbd36
5 changes: 3 additions & 2 deletions web-app/src/Routes.tsx
Original file line number Diff line number Diff line change
@@ -2,9 +2,10 @@ import * as React from 'react'
import * as CR from 'typings'
import { send } from './utils/vscode'

import NewPage from './components/New'
import ContinuePage from './components/Continue'
import Cond from './components/Cond'
import NewPage from './containers/New'
import ContinuePage from './containers/Continue'


interface ReceivedEvent {
data: CR.Action
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion web-app/stories/Continue.stories.tsx
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ import React from 'react'
import { storiesOf } from '@storybook/react'
import { action } from '@storybook/addon-actions'

import Continue from '../src/components/Continue'
import Continue from '../src/containers/Continue'
import demo from './data/basic'

storiesOf('Continue', module).add('Page', () => <Continue tutorials={[demo]} onContinue={action('onContinue')} />)
2 changes: 1 addition & 1 deletion web-app/stories/New.stories.tsx
Original file line number Diff line number Diff line change
@@ -3,6 +3,6 @@ import React from 'react'
import { storiesOf } from '@storybook/react'
import { action } from '@storybook/addon-actions'

import New from '../src/components/New'
import New from '../src/containers/New'

storiesOf('New', module).add('Page', () => <New onNew={action('onNew')} />)