0.1.9 • Published 2 years ago

@majisti/ui v0.1.9

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

Majisti UI Library

npm

React component library for Majisti's look and feel. Built on Chakra UI.

⚠️ Warning

While this package is public, and you're free to use it, we have built it specifically to satisfy our technical and design requirements. This means this library has our branding all over the place and is very opinionated on how it should be used.

That being the case, we do not intend on having a public issue tracker or provide help should you include this library in your project.

Usage

Install via yarn: yarn add @majisti/ui. Then, in your app, wrap your root component with the <ThemeProvider />:

import React from 'react'
import ReactDOM from 'react-dom'
import { ThemeProvider, Button } from '@majisti/ui'

const App: FC = () => (
    <ThemeProvider>
        <Button>Hello</Button>
    </ThemeProvider>
)

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

Majisti Dev?

You'll find documentation for local development in CONTRIBUTING.