GazinUI
Interface based on Gazin's design system to React Applications.
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