• Stars
    star
    156
  • Rank 239,589 (Top 5 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 2 years ago
  • Updated 9 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

React component library

MUI logo

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>
  );
}