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.
 
 
 

22 lines
351 B

import React from 'react';
import LeftColumn from './LeftColumn';
import RightContainer from './RightContainer';
export default class Site extends React.Component {
constructor(props){
super(props);
this.state = {};
}
render() {
return (
<div className="mainContainer">
<LeftColumn />
<RightContainer />
</div>
);
}
}