react-antd-grid
v1.0.2
Published
The grid part of ant-design
Downloads
5
Maintainers
Readme
✨ Features
- 🌈 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.
🖥 Environment Support
| IE / Edge | Firefox | Chrome | Safari | Electron | | --- | --- | --- | --- | --- | | IE11, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
📦 Install
npm install react-antd-grid
yarn add react-antd-grid
🔨 Usage
import { Row, Col } from 'react-antd-grid';
const App = () => (
<>
<Row>
<Col>Hello</Col>
</Row>
</>
);
And import style manually:
import 'react-antd-grid/dist/styles.css';