Expand file tree Collapse file tree 6 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ import * as React from 'react'
2
2
import * as CR from 'typings'
3
3
import { send } from './utils/vscode'
4
4
5
- import NewPage from './components/New'
6
- import ContinuePage from './components/Continue'
7
5
import Cond from './components/Cond'
6
+ import NewPage from './containers/New'
7
+ import ContinuePage from './containers/Continue'
8
+
8
9
9
10
interface ReceivedEvent {
10
11
data : CR . Action
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import React from 'react'
3
3
import { storiesOf } from '@storybook/react'
4
4
import { action } from '@storybook/addon-actions'
5
5
6
- import Continue from '../src/components /Continue'
6
+ import Continue from '../src/containers /Continue'
7
7
import demo from './data/basic'
8
8
9
9
storiesOf ( 'Continue' , module ) . add ( 'Page' , ( ) => < Continue tutorials = { [ demo ] } onContinue = { action ( 'onContinue' ) } /> )
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ import React from 'react'
3
3
import { storiesOf } from '@storybook/react'
4
4
import { action } from '@storybook/addon-actions'
5
5
6
- import New from '../src/components /New'
6
+ import New from '../src/containers /New'
7
7
8
8
storiesOf ( 'New' , module ) . add ( 'Page' , ( ) => < New onNew = { action ( 'onNew' ) } /> )
0 commit comments