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
557 B
17 lines
557 B
import React from 'react'
|
|
import Centerlefttop from "./centerleft/center-left-top"
|
|
import Centerleftcenter from "./centerleft/center-left-center"
|
|
import Centerleftcentertop from "./centerleft/center-left-centertop"
|
|
import Centerleftbottom from "./centerleft/center-left-bottom"
|
|
|
|
const CenterLeft = () => {
|
|
return (
|
|
<>
|
|
<div style={{ width: "48%", height: "100%", float: "left", marginLeft: "1%" }}>
|
|
<Centerlefttop />
|
|
<Centerleftbottom />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
export default CenterLeft
|