1.0.5 • Published 5 years ago

react-lattice v1.0.5

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

react-lattice

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

NPM JavaScript Style Guide

Install

npm i -s @nascentdigital/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