Skip to content
This repository has been archived by the owner on Jun 11, 2020. It is now read-only.

cypress-io/salad-ui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SaladUI Build Status

SaladUI provides a collection of simple React Components to build Universal apps.

Usage

You can either include all the components:

npm i --save salad-ui
import Salad from 'salad-ui'
class myComponent extends React.Component{
  render(){
     return <Salad.Form.Autocomplete/>
  }
}

Or some of the elements separately (lightweight!)

npm i --save salad-ui.form
import { Autocomplete } from 'salad-ui.form'
class myComponent extends React.Component{
  render(){
     return <Autocomplete/>
  }
}

Documentation

Salad-UI.com

Development

If you would like to contribute, feel free to submite pull requests/contact us directly. Salad-UI intends to develop simple, lightweight components that can be re-used accross various applications and environents.

Requirements: Node (tested in latest) Npm (tested in latest)

Developing? run npm run build in one terminal tab, and then npm run dev in another. Production? run npm run pub to directly publish to NPM, or npm run dist to only generate files. Demo page? To generate the demo client JS, run npm run dist:demo.

About

Reusable DM React components.

Resources

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.1%
  • CSS 1.6%
  • Other 0.3%