https://github.com/finnfiddle/react-bs-grid
React components for declaratively constructing Bootstrap layout grids (Container, Row, Column).
https://github.com/finnfiddle/react-bs-grid
Last synced: 9 months ago
JSON representation
React components for declaratively constructing Bootstrap layout grids (Container, Row, Column).
- Host: GitHub
- URL: https://github.com/finnfiddle/react-bs-grid
- Owner: finnfiddle
- License: mit
- Created: 2017-02-15T19:16:29.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-27T10:10:00.000Z (about 9 years ago)
- Last Synced: 2025-06-05T06:49:25.188Z (about 1 year ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React Bootstrap Grid
```bash
npm install react-bs-grid
```
React components for declaratively constructing Bootstrap layout grids (Container, Row, Col).
## Example Usage
```javascript
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { Container, Row, Col } from 'react-bs-grid';
class MyComponent extends Component {
render() {
return (
My content is resized and centered...
);
}
}
```
## License
MIT