File tree Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,10 @@ var MenuBuilder = function (mainWindow, appName) {
196
196
"https://github.com/open-source-labs/ReacType"
197
197
) ;
198
198
} ,
199
- } ,
199
+ } ,
200
+ {
201
+ label : "Tutorial" ,
202
+ }
200
203
] ,
201
204
} ,
202
205
] ;
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import Cookies from 'js-cookie';
6
6
7
7
import SignIn from './components/login/SignIn.tsx' ;
8
8
import SignUp from './components/login/SignUp.tsx' ;
9
+ import Wizard from './wizard/Wizard.tsx' ;
9
10
10
11
import {
11
12
HashRouter as Router ,
@@ -35,6 +36,7 @@ ReactDOM.render(
35
36
< Route exact path = "/login" component = { SignIn } />
36
37
< Route exact path = "/signup" component = { SignUp } />
37
38
< PrivateRoute path = "/" component = { App } />
39
+ < PrivateRoute path = "/wizard" component = { Wizard } />
38
40
</ Switch >
39
41
</ Router > ,
40
42
document . getElementById ( 'app' )
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ // import Grid from '@material-ui/core/Grid';
4
+
5
+ // import ComponentPanel from '../components/left/ComponentPanel';
6
+ // import HTMLPanel from '../components/left/HTMLPanel';
7
+
8
+ // Left-hand portion of the app, where component options are displayed
9
+ const Wizard = ( { style } ) : JSX . Element => {
10
+ return (
11
+ < div >
12
+ Wizard
13
+ </ div >
14
+ ) ;
15
+ } ;
16
+
17
+ export default Wizard ;
You can’t perform that action at this time.
0 commit comments