This package has been deprecated

Author message:

please use @nascentdigital/react-lattice

react-lattice
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

react-lattice

A set of flexible React components that simplify responsive web development.

NPM JavaScript Style Guide

Install

npm i -s react-lattice

Usage

// imports
import * as React from "react";
import {createGrid} from "react-lattice";
 
// define Grid (can be customized)
const Grid = createGrid();
 
 
// component
export const Page = () => {
 
    // render
    return (
        <Grid container justify="spaceEvenly" alignItems="center">
            <Grid item flex={{xs: 12, md: 6}}>                  
                Left (desktop), Top (mobile + tablet)                
            </Grid>
            <Grid item flex={{xs: 12, md: 6}}>                  
                Right (desktop), Bottom (mobile + tablet)                
            </Grid>
        </Grid>
    );
};

License

MIT © Nascent Digital

Package Sidebar

Install

npm i react-lattice

Weekly Downloads

0

Version

1.0.5

License

MIT

Unpacked Size

1.05 MB

Total Files

22

Last publish

Collaborators

  • sdedios