New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

reactjs-components

Package Overview
Dependencies
Maintainers
8
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reactjs-components

React UI Components by Mesosphere

  • 5.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19
decreased by-60.42%
Maintainers
8
Weekly downloads
 
Created
Source

ReactJS-components Build Status david-dm devDependency Status

A library of reusable React components. For examples, take a look at our kitchen sink.

Available components

  • Dropdown
  • List
  • Form
  • Modal
  • Confirm
  • Side Panel
  • Table
  • Tooltip

Using the components

  1. From the command line inside of your project
npm install --save reactjs-components react react-gemini-scrollbar canvas-ui
  1. Import the component that you want to use
// es6
import {Modal} from 'reactjs-components';

// es5
var Modal = require('reactjs-components').Modal;
  1. Use as if it was any other component
// ...

render: function () {
  return (
    // ...
    <Modal ...{props}>
      // Content
    <Modal />
  );
}
  1. Import LESS files which will add all styles for all components.
@import "./node_modules/canvas-ui/styles/canvas.less"
@import (inline) "./node_modules/reactjs-components/lib/index.less"

Contributing

See here.

FAQs

Package last updated on 19 Jun 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc