We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d724ed5 commit 699da0bCopy full SHA for 699da0b
app/electron/menu.js
@@ -199,6 +199,7 @@ var MenuBuilder = function (mainWindow, appName) {
199
},
200
{
201
label: "Tutorial",
202
+ click:
203
}
204
],
205
app/src/wizard/Wizard.tsx
@@ -1,4 +1,5 @@
1
import React from 'react';
2
+import { Link } from 'react-router-dom';
3
4
// import Grid from '@material-ui/core/Grid';
5
@@ -10,6 +11,9 @@ const Wizard = ({ style }): JSX.Element => {
10
11
return (
12
<div>
13
Wizard
14
+ <Link to={`/`}>
15
+ <button>Application</button>
16
+ </Link>
17
</div>
18
);
19
};
0 commit comments