Bumbag
Note: Bumbag is extremely unstable at the moment and is still work in progress - meaning that it's APIs will most likely change in the future until a stable 1.0.0 release.
Installing Bumbag
Run the following command to install Bumbag:
yarn bumbag
Getting set up
To start using the components, please follow these steps:
- Wrap your application in a
<ThemeProvider>
which is provided by Bumbag:
import { ThemeProvider } from 'bumbag';
const App = () => (
<ThemeProvider>
// ... your app
</ThemeProvider>
);
- Now you can start using components like so!:
import { Button } from 'bumbag';
const MyApp = () => (
<Button>
Hello world!
</Button>
);