
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
react-ui-components
Advanced tools
React Components Library
To install the latest release:
npm install react-ui-components
After npm install, you'll find all the source code in the src/ folder and their compiled results in the /lib folder. And some basic styles of components in scss/ folder.
Once react-ui-components is installed in your project, you can use like this:
/** MyFirstReactComponent.jsx */
var React = require('react');
var Components = require('react-ui-components');
var SimpleButton = Components.SimpleButton;
var LinkButton = Components.LinkButton;
module.exports = React.createClass({
render: function(){
return (
<div className="btn-demo">
<SimpleButton
customClass="default-btn"
label="A button element" >
</SimpleButton>
<SimpleButton
customClass="submit-btn"
label="A submit element"
onTap={this._onTap} >
</SimpleButton>
<LinkButton
customClass="anchor-btn"
label="A anchor"
href="http://www.baidu.com/" >
</LinkButton>
</div>
);
},
_onTap: function(e){
alert('Clicked...')
}
});
/** app.jsx */
var React = require('react');
var injectTapEventPlugin = require('react-tap-event-plugin');
var Buttons = require('./MyFirstReactComponent.jsx');
React.render(<Buttons />, document.getElementById('main'))
To help you get started, you can find complete example in /examples folder or visit the website

FAQs
A collection of UI components for React
We found that react-ui-components demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.