1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00
2022-09-19 15:20:45 +03:00

10 lines
174 B
TypeScript

import React, { ReactElement } from 'react'
export default function StakingPage({
accountId
}: {
accountId: string
}): ReactElement {
return <div>Test staking</div>
}