Added new layout -0 also fuck vim it's the worst

This commit is contained in:
elijahlucian
2017-06-25 16:25:23 -06:00
parent 3bc7263322
commit 453182ea7a
8 changed files with 3815 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
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;