0.1.4 • Published 2 years ago

ui-react-pack v0.1.4

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

Reusable React Components

Installation

yarn add ui-react-pack

1. Initial Setup

import { FILE, STYLE } from 'ui-react-pack'

FILE.PATH_IMAGES = '/static/img' // default is `/static/images`
STYLE.ANIMATION_DURATION = 300 // default is 500
STYLE.GREEN = 'rgb(55, 145, 75)' // set green color
STYLE.PRIMARY = STYLE.GREEN // set primary color to green
STYLE.SECONDARY = STYLE.RED

2. Use Components

import Table from 'ui-react-pack/Table'