About

RFUI is a component library for React apps. It lets you do stuff like this:

import { Button } from "rfui-package";

const SubmitButton = () => {
  return (
    <Button variant="secondary" type="submit">
      Submit
    </Button>
  );
};

And get a nice looking button like this:

It is available as an NPM package. Check out the Getting Started page if you'd like to give it a try.

Note: Anyone is welcome to use RFUI. However, consider that it isn't battle tested yet (hence being on version 0.x.x instead of 1.x.x).