Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Yossapol / wds-react

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • wds-react
  • src
  • components
  • grids
  • GridSort.js
  • rtclub11140's avatar
    create new branch · 1614c5fb
    rtclub11140 committed Mar 01, 2019
    1614c5fb
GridSort.js 441 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import React, { Component, Fragment } from 'react'
import { Row, Col } from 'antd'

class GridSort extends Component {

    render() {
    return (
        <Fragment>
            <div>
                <Row>
                    <Col span={18} push={6}>col-18 col-push-6</Col>
                    <Col span={6} pull={18}>col-6 col-pull-18</Col>
                </Row>
            </div>
        </Fragment>
    )
}
}
export default GridSort