No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

Welcome to bumblebee-ui✨

bumblebee-ui (BBUI) is a reusable component library that helps Storybook contributors build UIs faster. The goal is to make building durable UIs more productive and satisfying.

The current version is bumblebee-ui@0.0.7

Install

BBUI components are written in React, and its stories are written in Component Story Format. It requires Storybook version 6.

yarn add bumblebee-ui

Use

Import components you want into your UI

import { BreadCrumbs, PageWrapper } from ‘bumblebee-ui’;

and use them like so

const example = () => { const links = [ <Link to='/dashboard'>Dashboard</Link>, 'Task Manager', 'To Do List' ] return ( <PageWrapper> <BreadCrumbs onBackClick={() => { history.push('/') }} links={links} /> </PageWrapper> ) }

Run and develop BBUI locally

Clone the BBUI Repo then start Storybook.

yarn && yarn run storybook

deploy to Netlify

Automatically your push to master branch will trigger Netlify to deploy the Storybook.

deploy to Chromatic

run yarn chromatic