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.
17 lines
438 B
17 lines
438 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 = () => {
|
|
return (
|
|
<>
|
|
<div style={{ width: "23%", height: "100%", float: "left", marginLeft: "1%" }}>
|
|
<Lefttop />
|
|
<Leftcenter />
|
|
<Leftbottom />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
export default Left
|