facaade

A style agnostic react component library

Usage no npm install needed!

<script type="module">
  import facaade from 'https://cdn.skypack.dev/facaade';
</script>

README

Build Status Coverage Status

facaade

A style agnostic react component library

Getting started

install package run npm install -S facaade

import the facaade components into your project and start using them!

import { Component } from 'react'
import { Button } from 'facaade'

class App extends Component {

    render() {
        return (
            <Button
                id="button-1"
                className="my-custom-button-class"
                onClick={()=>console.log("hello world")}
            >
                Say hello
            </Button>
        )
    }
}