1.0.0 • Published 2 years ago

@lowes-tech/bds-react v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

@lowes-tech/bds-react

Version Node NPM Contributors

Backyard Design System React component library is a npm package that exposes atomic level react components for any Omni-Channel product that is using React as their front-end framework.

Contributing

Contributers are welcome to the bds-react project. Need to update a component for a new business need? Want to add a new component to the repository? Follow the contribution guide to get started.

Install

This package requires node >= 4, but we recommend node >= 8

npm install -D @lowes-tech/bds-react

Usage

import * as React from 'react'
import { Grid, Button } from '@lowes-tech/bds-react'

const Component = (props) => {
    //...code
    return (
        <Grid.Container>
            <Grid.Row>
                <Grid.Column>
                    <Button />
                </Grid.Column>
            </Grid.Row>
        </Grid.Container>
    )
}

export default Component

Components