Build your frontend faster with Formation—20+ react-based UI components. Free and open-source.
Formation is available as an npm package.
npm install @joshdschneider/formation
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>
);
}