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

7 lines
152 B
JavaScript
Raw Normal View History

2022-04-14 23:27:16 +02:00
import { connect } from 'react-redux';
import ColorPicker from './view';
const select = (state) => ({});
export default connect(select)(ColorPicker);