123456789101112131415161718192021222324252627282930313233343536 |
- import React from 'react'
- import { Menu } from 'antd'
-
- const menuStyle = { height: '100%' }
-
- export default (props) => {
- const { theme, items, location } = props
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- const selectedKeys = [location.pathname]
- return (
- <Menu
- // onClick={handClick}
- mode="inline"
- style={menuStyle}
- theme={theme}
- items={items}
- selectedKeys={selectedKeys}
- />
- )
- }
|