2.6.2 • Published 1 year ago

@blockadegames/pizza-juice v2.6.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

🍕 Pizza Juice

A Design System for React projects with the Neon District style guide.

Install Instructions

First, install the dependencies.

$ yarn add @blockadegames/pizza-juice

And then add the provider in your application:

import { ToastContainer } from '@blockadegames/pizza-juice';

export const App = () => {
  return (
    <SomeProviders>
      {/* a lot of providers/routing stuff */}
      <ToastContainer />
    </SomeProviders>
  );
};