mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-15 05:10:47 +08:00
28 lines
584 B
JavaScript
28 lines
584 B
JavaScript
import React, { Component } from 'react';
|
|
import GroupList from './GroupList/GroupList.js';
|
|
import ProjectList from './ProjectList/ProjectList.js';
|
|
import { Row, Col } from 'antd';
|
|
|
|
import './ProjectGroups.scss'
|
|
|
|
export default class ProjectGroups extends Component {
|
|
constructor(props) {
|
|
super(props)
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<div className="g-doc">
|
|
<Row gutter={16}>
|
|
<Col span={6}>
|
|
<GroupList></GroupList>
|
|
</Col>
|
|
<Col span={18}>
|
|
<ProjectList/>
|
|
</Col>
|
|
</Row>
|
|
</div>
|
|
)
|
|
}
|
|
}
|