lbry-desktop/ui/page/swap/index.js

7 lines
152 B
JavaScript
Raw Normal View History

2021-03-10 08:13:53 +01:00
import { connect } from 'react-redux';
import SwapPage from './view';
const select = (state) => ({});
export default connect(select, null)(SwapPage);