primereact alternatives and similar libraries
Based on the "Responsive" category.
Alternatively, view primereact alternatives based on common mentions on social networks and blogs.
-
office-ui-fabric-react
React components for building Microsoft web experiences. (๐ค But I'm not sure I want a "MSFT experience?") -
searchkit
React UI components / widgets. The easiest way to build a great search experience with Elasticsearch. -
react-foundation-apps
Foundation Apps components built with React. -
atomize-by-quarkly
Library for creating atomic react components Inspired by Tachyons and Styled-system -
insites-ui
Modern, opinionated, minimal, yet powerful React components library, powered by Styled Components. -
react-uikit-components
React UIkit Components for the UIKit CSS framework. -
atlaskit
Atlassian's official UI library. (Please... no more Jira though ๐) -
Autocomplete
Accessible autocomplete, combobox, multiselect component for React.
Get performance insights in less than 4 minutes
Do you think we are missing an alternative of primereact or a related project?
README
PrimeReact
PrimeReact is a rich set of open source UI Components for React. See PrimeReact homepage for live showcase and documentation.
Download
PrimeReact is available at npm, if you have an existing application run the following command to download it to your project.
npm install primereact --save
npm install primeicons --save
Import
//import {ComponentName} from 'primereact/{componentname}';
import {Dialog} from 'primereact/dialog';
import {Accordion,AccordionTab} from 'primereact/accordion';
Dependencies
Majority of PrimeReact components (95%) are native and there are some exceptions having 3rd party dependencies such as Google Maps for GMap.
In addition, components require PrimeIcons for icons and react-transition-group for animations.
dependencies: {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-transition-group": "^4.4.1",
"primeicons": "^4.0.0"
}
Styles
The css dependencies are as follows, note that you may change the theme with another one of your choice.
primereact/resources/themes/saga-blue/theme.css
primereact/resources/primereact.min.css
primeicons/primeicons.css
If you are using a bundler such as webpack with a css loader you may also import them to your main application component, an example from create-react-app would be.
import 'primereact/resources/themes/saga-blue/theme.css';
import 'primereact/resources/primereact.min.css';
import 'primeicons/primeicons.css';
QuickStart
An example application based on create-react-app is available at github.
TypeScript
Typescript is fully supported as type definition files are provided in the npm package of PrimeReact. A sample typescript-primereact application is available as well at github.
*Note that all licence references and agreements mentioned in the primereact README section above
are relevant to that project's source code only.