四好公路
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.
 
 
 
 

16 lines
609 B

import React from 'react'
import LeftBottom from './left/left-bottom'
import LeftCenter from './left/left-center'
import LeftTop from './left/left-top'
const Left = (props) => {
const { roadData, loading, data, shuju } = props
return (
<div style={{ position: 'absolute', left: 0, width: "23%", height: "100%", marginLeft: "1%" }}>
<LeftTop roadData={roadData} loading={loading} />
<LeftCenter roadData={roadData} loading={loading} data={data} shuju={shuju} />
<LeftBottom roadData={roadData} loading={loading} />
</div>
)
}
export default Left