Skip to content

Commit 6ac976d

Browse files
ready for merge
1 parent daef724 commit 6ac976d

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

app/electron/menu.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,10 @@ var MenuBuilder = function (mainWindow, appName) {
196196
"https://github.com/open-source-labs/ReacType"
197197
);
198198
},
199-
},
199+
},
200+
{
201+
label: "Tutorial",
202+
}
200203
],
201204
},
202205
];

app/src/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import Cookies from 'js-cookie';
66

77
import SignIn from './components/login/SignIn.tsx';
88
import SignUp from './components/login/SignUp.tsx';
9+
import Wizard from './wizard/Wizard.tsx';
910

1011
import {
1112
HashRouter as Router,
@@ -35,6 +36,7 @@ ReactDOM.render(
3536
<Route exact path="/login" component={SignIn} />
3637
<Route exact path="/signup" component={SignUp} />
3738
<PrivateRoute path="/" component={App} />
39+
<PrivateRoute path="/wizard" component={Wizard} />
3840
</Switch>
3941
</Router>,
4042
document.getElementById('app')

app/src/wizard/Wizard.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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;

0 commit comments

Comments
 (0)