16 lines
309 B
TypeScript
16 lines
309 B
TypeScript
import OpenOrdersTable from '../OpenOrdersTable'
|
|
import { useTranslation } from 'next-i18next'
|
|
|
|
const AccountOrders = () => {
|
|
const { t } = useTranslation('common')
|
|
|
|
return (
|
|
<>
|
|
<h2 className="mb-3.5">{t('open-orders')}</h2>
|
|
<OpenOrdersTable />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default AccountOrders
|