mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
12 lines
268 B
TypeScript
12 lines
268 B
TypeScript
import React from 'react'
|
|
import Time from '../Time'
|
|
import Link from 'next/link'
|
|
|
|
export default function DdoLinkCell({ id, name }: { id: any; name: any }) {
|
|
return (
|
|
<Link href="/asset/[did]" as={`/asset/${id}`} passHref>
|
|
<a>{name}</a>
|
|
</Link>
|
|
)
|
|
}
|