0.3.1 • Published 4 years ago

@dank-inc/dank-design v0.3.1

Weekly downloads
-
License
-
Repository
github
Last release
4 years ago

Dank Design System

a design system created for use with react!

Features

  • App wrapper insta-app™ component!
  • runtime-configurable css variables!
  • intuitive layout components!
  • Markdown viewifier!
  • auth context!
  • api boilerplate!
  • useful hooks!

Development

$ git clone [this]
$ npm i
$ npm run storybook

Usage

# go to any react app you have made
$ npm i @dank-inc/dank-design

import components to use in your app!

import { Button } from '@dank-inc/dank-design

export const App = () => {
  const title = "App Title"

  return (
    <div>
      <h1>{title}</h1>
      <Button>Click Meh!</Button>
    </div>
  )
}