// @flow import React from 'react'; import { useHistory } from 'react-router'; import TxoList from 'component/txoList'; import Page from 'component/page'; import WalletBalance from 'component/walletBalance'; import ClaimList from 'component/claimList'; type Props = { history: { action: string, push: (string) => void, replace: (string) => void }, location: { search: string, pathname: string }, }; const Elements = (props: Props) => { const { location: { search }, } = useHistory(); return (
); }; export default Elements;