Fix component naming
Doesn't affect functionality, but shows confusing result in text search.
This commit is contained in:
parent
e3996f458f
commit
30977cae96
2 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { selectBalance } from 'redux/selectors/wallet';
|
import { selectBalance } from 'redux/selectors/wallet';
|
||||||
import Wallet from './view';
|
import YrblWalletEmpty from './view';
|
||||||
|
|
||||||
const select = (state) => ({
|
const select = (state) => ({
|
||||||
balance: selectBalance(state),
|
balance: selectBalance(state),
|
||||||
});
|
});
|
||||||
|
|
||||||
export default connect(select, {})(Wallet);
|
export default connect(select)(YrblWalletEmpty);
|
||||||
|
|
|
@ -13,7 +13,7 @@ type Props = {
|
||||||
type?: string,
|
type?: string,
|
||||||
actions?: Node,
|
actions?: Node,
|
||||||
};
|
};
|
||||||
export default function YrblHelp(props: Props) {
|
export default function YrblWalletEmpty(props: Props) {
|
||||||
const { includeWalletLink = false, type = 'sad' } = props;
|
const { includeWalletLink = false, type = 'sad' } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue