grid-layout-mannan
v1.0.4
Published
A simple responsive React grid layout component
Downloads
12
Readme
grid-layout-mannan
A lightweight, responsive, React grid-style layout component with column breakpoints and custom gutter spacing.
✨ Features
- ✅ Fully responsive column layout
- 🧱 Grid-style column distribution
- ⚙️ Easy to customize with breakpoints and gutter
- 🪶 Lightweight and dependency-free (except React)
📦 Installation
npm install grid-layout-mannan
🚀 Usage
import GridLayout from 'grid-layout-mannan';
<GridLayout
columnsCountBreakPoints={{ 350: 1, 768: 2, 1024: 3 }}
gutter="20px"
>
<YourCardComponent />
<YourCardComponent />
...
</GridLayout>