2017-07-12 10:17:57 +08:00
|
|
|
import React, { Component } from 'react';
|
2017-07-12 11:43:04 +08:00
|
|
|
import GroupList from './GroupList/GroupList.js';
|
2017-07-12 10:17:57 +08:00
|
|
|
import ProjectList from './ProjectList';
|
|
|
|
import { Row, Col } from 'antd';
|
2017-07-06 17:47:27 +08:00
|
|
|
|
2017-07-11 14:37:20 +08:00
|
|
|
import './ProjectGroups.scss'
|
|
|
|
|
2017-07-10 20:26:49 +08:00
|
|
|
export default class ProjectGroups extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2017-07-12 10:17:57 +08:00
|
|
|
<div className="g-doc">
|
|
|
|
<Row gutter={16}>
|
|
|
|
<Col span={6}>
|
|
|
|
<GroupList></GroupList>
|
|
|
|
</Col>
|
|
|
|
<Col span={18}>
|
|
|
|
<ProjectList/>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2017-07-10 20:26:49 +08:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|