facaade
v0.4.7
Published
A style agnostic react component library
Downloads
7
Readme
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>
)
}
}