The grid part of ant-design
- 🌈 Its the grid components of ant-design library
- 📦 A set of high-quality React grid components out of the box.
- 🛡 Written in TypeScript with predictable static types.
- ⚙️ Whole package of design resources and development tools.
- 🌍 Small size.
- 🎨 Could be use with others UI components. No side effect.
![]() IE / Edge |
![]() Firefox |
![]() Chrome |
![]() Safari |
![]() Electron |
|---|---|---|---|---|
| IE11, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
npm install react-antd-gridyarn add react-antd-gridimport { Row, Col } from 'react-antd-grid';
const App = () => (
<>
<Row>
<Col>Hello</Col>
</Row>
</>
);And import style manually:
import 'react-antd-grid/dist/styles.css';



