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
403 B
16 lines
403 B
import React from 'react'
|
|
import Righttop from './right/right-top'
|
|
import Rightcenter from './right/right-center'
|
|
import Rightbottom from './right/right-bottom'
|
|
|
|
const Right = () => {
|
|
return (
|
|
<>
|
|
<div style={{ width: "25%", height: "100%", float: "right" }}>
|
|
<Righttop />
|
|
<Rightbottom />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
export default Right
|