mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
import React, { ReactElement } from 'react'
|
|
|
|
export default function StakingPage({
|
|
accountId
|
|
}: {
|
|
accountId: string
|
|
}): ReactElement {
|
|
return <div>Test staking</div>
|
|
}
|