5 lines
148 B
JavaScript
5 lines
148 B
JavaScript
import React from "react";
|
|
import { connect } from "react-redux";
|
|
import WalletPage from "./view";
|
|
|
|
export default connect(null, null)(WalletPage);
|