lbry-desktop/ui/component/ratioBar/index.js
2022-04-15 15:29:37 -04:00

6 lines
153 B
JavaScript

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