A tree-shakeable library containing common reusable components, hooks and utils
Readme
A tree-shakeable library containing common reusable components, hooks and utils
yarn && yarn run build
import React, { Component } from "react"
import { MyComponent } from "@mottle/components"
class Example extends Component {
render() {
return (
<>
<MyComponent />
</>
}
}