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

GitHub

View Github