Skip to main content

Getting Started

React widgets is a high quality suite of React inputs. Each component is built for ease of use, accessibility, and the practical needs of complex (or simple) forms. Get going quickly with the low friction setup.

npm install react-widgets --save

Import or link to the stylesheet. Icons and images are included as inline SVG's and don't require additional configuration.

import "react-widgets/styles.css";

Import your component or components of choice

import DropdownList from "react-widgets/DropdownList";
function App() {
return (
<>
{...}
<DropdownList />
</>
);
}

Consult the input documentation for API details, or the styling guide for custimizing the look and feel of each input.