---
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" />;
  }
}
```
