UNPKG

react-color

Version:

A Collection of Color Pickers from Sketch, Photoshop, Chrome & more

17 lines (14 loc) 339 B
--- id: usage-include title: Include the Component --- Require `react-color` at the top of a component and then use `ColorPicker` in the render function: ``` var React = require('react'); var ColorPicker = require('react-color'); class Component extends React.Component { render() { return <ColorPicker type="sketch" />; } } ```