Open source React components made with by Doist
Reactist is an open-source library of React components developed by Doist. It offers a collection of components that can be easily integrated into React projects. The library is available on npm and is licensed under the MIT License. Reactist components follow a clean code style using prettier and contributions are welcome through pull requests. The library also provides a live demo that showcases all the currently implemented components and includes a live playground to interact with them in different states.
To use Reactist in your project, you can add it by installing it from npm using the following command:
npm install reactist
To import a component within your code:
import { ComponentName } from 'reactist';
You also need to load the CSS file of Reactist in your app. You can include it by adding the following line:
<link rel="stylesheet" href="path/to/reactist.min.css">
Alternatively, you can include the minified build from the dist folder if you prefer to use static files.
Reactist is an open-source library of React components developed by Doist. It provides a collection of components that can be easily integrated into React projects. The library follows a clean code style using prettier and contributions are welcome through pull requests. It also includes a live demo with all the currently implemented components and a live playground to interact with them in different states. Reactist can be installed from npm and the CSS file needs to be loaded in the app. Overall, Reactist offers a convenient solution for incorporating pre-built React components into projects.