import React from 'react'
//同级没有React,会去加载Node-module模块中的
import { Row,Col } from 'antd'
export default class Admin extends React.Component{
render(){
return(
// 只能return一个根节点,不能是两个或者多个
<Row>
<Col span={3}>
Left
</Col>
<Col span={21}>
Right
</Col>
</Row>
);
}
}