0.1.4 • Published 3 years ago

@tigdevs/gazinui v0.1.4

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

GazinUI

Interface based on Gazin's design system to React Applications.

NPM JavaScript Style Guide

Install

npm install @tigdevs/gazinui
yarn add @tigdevs/gazinui

Usage

First you need to wrap application in GazinProvider component.

import React from 'react'
import ReactDOM from 'react-dom'

import { GazinProvider } from '@tigdevs/gazinui'
import { App } from './App'

ReactDOM.render((
  <GazinProvider>
    <App />
  </GazinProvider>
), document.getElementById('root'))

Then use all components available.

import React from 'react'

import { GButton } from '@tigdevs/gazinui'

export const App = () => {
  return <GButton>Testando</GButton>
}

Components

Our interface is a wrapper of ChakraUI, you an use all components available in its docs.

License

MIT © Gazin