UI component library built on React and styled-components and powered by Synth design tokens
@beatgig/synth-uiSynth UI is the component library used to build products at BeatGig, built on React and styled-components and powered by Synth design tokens.
``bash`
yarn add @beatgig/synth-ui
Import any component you want to use and render them with React:
`javascript
import React from 'react'
import ReactDOM from 'react-dom'
import { Button, Card, Paragraph } from '@beatgig/synth-ui'
ReactDOM.render(
document.getElementById('root')
)
``