oceanprotocol/market

View on GitHub
src/components/Profile/index.tsx

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import React, { ReactElement } from 'react'
import HistoryPage from './History'
import AccountHeader from './Header'

export default function AccountPage({
  accountId
}: {
  accountId: string
}): ReactElement {
  return (
    <>
      <AccountHeader accountId={accountId} />
      <HistoryPage accountIdentifier={accountId} />
    </>
  )
}