-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmin.js
35 lines (31 loc) · 876 Bytes
/
Admin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import React from 'react';
// import Frame from "./JSComponent/admin/frames/index"
function Admin() {
return (
<div></div>
// <Frame>
// <Helmet>
// <meta charSet="utf-8" />
// <title>Admin | ModestFun的个人博客</title>
// <link rel="icon" href={fileIp.defaultIp + "/img/?name=logo"} />
// </Helmet>
// <Switch>
// {
// adminRoutes.map(route => {
// return (
// <Route
// key={route.path}
// path={route.path}
// exact={route.exact}
// render={routeProps => {
// return <route.component {...routeProps} />
// }}></Route>
// )
// })
// }
// <Redirect to="/404"></Redirect>
// </Switch>
// </Frame>
)
}
export default Admin;