/xrc

React component library written in TypeScript and styled with emotion and onno

Primary LanguageTypeScriptMIT LicenseMIT

xrc

React component library written in TypeScript and styled with emotion and onno.

Usage

import * as React from "react"
import * as ReactDOM from "react-dom"
import { Button } from "xrc"

const root = document.getElementById("root")

ReactDOM.render(<Button>Hello XRC</Button>, root)