Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

bumbag

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bumbag

An accessible, composable, and friendly React UI Kit


Version published
Weekly downloads
2.2K
increased by272.47%
Maintainers
1
Weekly downloads
 
Created

Bumbag (WORK IN PROGRESS)

Installing Bumbag

Run the following command to install Bumbag:

yarn bumbag

Getting set up

To start using the components, please follow these steps:

  1. Wrap your application in a <ThemeProvider> which is provided by Bumbag:
import { ThemeProvider } from 'bumbag';

const App = () => (
  <ThemeProvider>
    // ... your app
  </ThemeProvider>
);
  1. Now you can start using components like so!:
import { Button } from 'bumbag';

const MyApp = () => (
  <Button>
    Hello world!
  </Button>
);

FAQs

Package last updated on 30 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts