17 lines
326 B
JavaScript
17 lines
326 B
JavaScript
import React, { Component } from 'react';
|
|
import RightTop from './RightTop';
|
|
import RightBottom from './RightBottom';
|
|
|
|
class RightContainer extends Component {
|
|
render(){
|
|
return(
|
|
<div className="rightContainer">
|
|
<RightTop />
|
|
<RightBottom />
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default RightContainer;
|