Overview

Formation is a React-based component library designed to help you ship your frontend applications faster. 20+ free UI components and counting (contributors welcome).

Installation

Add Formation to your application with npm using the command below:

npm install @joshdschneider/formation

Usage

To put Formation to use, just import a component from the package like so:

import { Button } from '@joshdschneider/formation';
 
function App() {
  return <Button intent='success'>Hello World</Button>;
}