四好公路
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
487 B

import React from 'react'
import Lefttop from './left/left-top'
// import Leftcenter from "./left/left-center"
import Leftbottom from './left/left-bottom'
const Left = (props) => {
const { dispatch } = props
return (
<>
<div style={{ width: "23%", height: "100%", float: "left", marginLeft: "1%" }}>
<Lefttop dispatch={dispatch} />
<Leftbottom dispatch={dispatch} />
</div>
</>
)
}
export default Left