All Projects â†’ mesosphere â†’ Reactjs Components

mesosphere / Reactjs Components

Licence: apache-2.0
🎨 A library of reusable React components

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Reactjs Components

Playa Mesos
Quickly build Mesos sandbox environments using Vagrant. Run apps on top!
Stars: ✭ 437 (+223.7%)
Mutual labels:  dcos
Ansible Dcos
[DEPRECATED] Please consider using the Ansible Roles for DC/OS maintained by the Mesosphere SRE team
Stars: ✭ 41 (-69.63%)
Mutual labels:  dcos
Dcos Jenkins Service
Jenkins on DC/OS
Stars: ✭ 72 (-46.67%)
Mutual labels:  dcos
Mesos Dns
DNS-based service discovery for Mesos.
Stars: ✭ 481 (+256.3%)
Mutual labels:  dcos
Marathon Client
Java Integration Library for Mesosphere Marathon
Stars: ✭ 15 (-88.89%)
Mutual labels:  dcos
Acs Engine
WE HAVE MOVED: Please join us at Azure/aks-engine!
Stars: ✭ 1,049 (+677.04%)
Mutual labels:  dcos
Predator
A powerful open-source platform for load testing APIs.
Stars: ✭ 356 (+163.7%)
Mutual labels:  dcos
Marathon Autoscale
Simple Proof-of-Concept for Scaling Application running on Marathon based on Utilization
Stars: ✭ 108 (-20%)
Mutual labels:  dcos
Shakedown
DC/OS test harness
Stars: ✭ 30 (-77.78%)
Mutual labels:  dcos
Tweeter
A tiny Twitter clone for DC/OS
Stars: ✭ 68 (-49.63%)
Mutual labels:  dcos
Kubernetes Mesos
A Kubernetes Framework for Apache Mesos
Stars: ✭ 640 (+374.07%)
Mutual labels:  dcos
Linkerdcosdockerfile
Linker Dcos DockerFile&DockerCompose yml file
Stars: ✭ 8 (-94.07%)
Mutual labels:  dcos
Dcos E2e
Spin up and manage DC/OS clusters in test environments
Stars: ✭ 61 (-54.81%)
Mutual labels:  dcos
Marathon Lb
Marathon-lb is a service discovery & load balancing tool for DC/OS
Stars: ✭ 449 (+232.59%)
Mutual labels:  dcos
Vault Gatekeeper
A small service for securely delivering Vault authorization keys to Mesos tasks and ECS containers.
Stars: ✭ 83 (-38.52%)
Mutual labels:  dcos
Marathon
Deploy and manage containers (including Docker) on top of Apache Mesos at scale.
Stars: ✭ 4,035 (+2888.89%)
Mutual labels:  dcos
Csilvm
A LVM2 CSI plugin
Stars: ✭ 49 (-63.7%)
Mutual labels:  dcos
Dcos Cassandra Service
DEPRECATED—Open source Apache Cassandra running on DC/OS is now replaced by mesosphere/dcos-commons/frameworks/cassandra. This repository will be deleted at the end of 2017.
Stars: ✭ 116 (-14.07%)
Mutual labels:  dcos
Scale
Processing framework for containerized algorithms
Stars: ✭ 100 (-25.93%)
Mutual labels:  dcos
Etcd Mesos
self-healing etcd on mesos!
Stars: ✭ 68 (-49.63%)
Mutual labels:  dcos

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].