Simple React Blocks is a React UI component library which consists of tiny ready-made building blocks.
// with npm
npm install simple-react-blocks
// with yarn
yarn add simple-react-blocks
Note: Simple React Blocks is still in alpha. We are adding new components regularly and you're welcome to contribute!
Here is an example of a basic app using Simple React Blocks's Button
component:
import * as React from "react";
import Button from "simple-react-blocks";
function App() {
return <Button text="Hello world!" size="medium" />;
}
The changelog is regularly updated to reflect what's changed in each new release.
This project is licensed under the terms of the MIT license.