lbry-desktop/ui/js/component/router/index.jsx

12 lines
332 B
React
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { connect } from "react-redux";
import Router from "./view.jsx";
import { selectCurrentPage, selectCurrentParams } from "selectors/app.js";
2017-04-07 07:15:22 +02:00
2017-06-06 06:21:55 +02:00
const select = state => ({
2017-05-15 05:50:59 +02:00
params: selectCurrentParams(state),
2017-06-06 23:19:12 +02:00
currentPage: selectCurrentPage(state),
2017-06-06 06:21:55 +02:00
});
2017-04-07 07:15:22 +02:00
export default connect(select, null)(Router);