lbry-desktop/ui/component/colorPicker/index.js

7 lines
152 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import ColorPicker from './view';
const select = (state) => ({});
export default connect(select)(ColorPicker);