Commit 4b1e1389 by Zhang Xin

add left & right container

parent 6adc716d
import React from 'react';
export default class LeftContainer extends React.Component{
constructor(props){
super(props);
}
render(){
return(
<div>
{this.props.children}
</div>
)
}
}
\ No newline at end of file
import React from 'react';
export default class RightContainer extends React.Component{
constructor(props){
super(props);
}
render(){
return(
<div>
{this.props.children}
</div>
)
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment