mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
import React from 'react'
|
|
import { Link } from 'gatsby'
|
|
|
|
export default function DdoLinkCell({ id, name }: { id: any; name: any }) {
|
|
return <Link to={`/asset/${id}`}>{name}</Link>
|
|
}
|