Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 442 Bytes

readme.md

File metadata and controls

19 lines (13 loc) · 442 Bytes

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)