/creative-ui

React components for quickly bringing creative apps to life

Primary LanguageTypeScriptMIT LicenseMIT

creative-ui

Get started

Install

yarn add creative-ui
# or
npm install --save creative-ui

Use

import { Loader } from 'creative-ui'

const App = () => {
  return (
    <div>
      <Loader progress={0.5}></Loader>
    </div>
  )
}

Examples