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 0a5bce2 commit 672f323Copy full SHA for 672f323
src/app.tsx
@@ -4,10 +4,12 @@ import Top from './components/top/top'
4
import Home from "./components/home/home"
5
import Download from "./components/download/download"
6
import './app.css'
7
+import Manual from "./components/manual/manual";
8
9
const states = [
10
{name: 'base', url: '/', component: Home},
- {name: 'download', url: '/download', component: Download}
11
+ {name: 'download', url: '/download', component: Download},
12
+ {name: 'manual', url: '/manual', component: Manual}
13
]
14
15
const plugins = [pushStateLocationPlugin]
0 commit comments