You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-vapor

Package Overview
Dependencies
Maintainers
18
Versions
1193
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-vapor

Vapor CSS components implemented with React!

31.3.1
latest
Source
npmnpm
Version published
Weekly downloads
131
-59.69%
Maintainers
18
Weekly downloads
 
Created
Source

React-Vapor

Build Status codecov Npm total downloads badge npm license

Coveo Administration Console's design system.

Have a look at react-vapor's demo page!

Getting started

Prerequisites

This repository uses some external libraries defined as peer dependencies. You must install those libraries in you own project in order for react-vapor to work properly. All peer dependencies are listed in the package.json file along with their respective version requirements.

Install

npm install react-vapor

If you want to use react-vapor in a TypeScript context, the package already includes its types.

Usage

In a .jsx context:

const React = require('react');
const ReactDom = require('react-dom');
const Badge = require('react-vapor').Badge;

ReactDom.render(<Badge label="Hello react-vapor!" />, document.getElementById('SomewhereInYourApp'));

In a .tsx context:

import * as React from 'react';
import * as ReactDom from 'react-dom';
import {Badge} from 'react-vapor';

ReactDom.render(<Badge label="Hello react-vapor!" />, document.getElementById('SomewhereInYourApp'));

Contributing

See our main page.

License

react-vapor is distributed under Apache 2.0 license.

Keywords

coveo

FAQs

Package last updated on 21 Dec 2021

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