Skip to content

Commit 672f323

Browse files
committed
manual page added to states.
1 parent 0a5bce2 commit 672f323

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ import Top from './components/top/top'
44
import Home from "./components/home/home"
55
import Download from "./components/download/download"
66
import './app.css'
7+
import Manual from "./components/manual/manual";
78

89
const states = [
910
{name: 'base', url: '/', component: Home},
10-
{name: 'download', url: '/download', component: Download}
11+
{name: 'download', url: '/download', component: Download},
12+
{name: 'manual', url: '/manual', component: Manual}
1113
]
1214

1315
const plugins = [pushStateLocationPlugin]

0 commit comments

Comments
 (0)