1.0.2 • Published 2 years ago

@joshdschneider/formation v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Formation

Build your frontend faster with Formation—20+ react-based UI components. Free and open-source.

license npm latest package

Visit the website ▸

Read the documentation ▸

View the documentation repo ▸

Installation

Formation is available as an npm package.

npm install @joshdschneider/formation

Getting started

Here is an example of a basic app using Formation's Button component:

import React from 'react';
import ReactDOM from 'react-dom';
import { Button } from '@joshdschneider/formation';

function App() {
  return (
    <Button intent='primary' size='regular'>
      Hello World
    </Button>
  );
}