mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-16 02:04:54 +01:00
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
import React from 'react'
|
|
import Time from '../Time'
|
|
|
|
export default function DateCell({ date }: { date: any }) {
|
|
console.log(date)
|
|
return date && <Time date={date} />
|
|
}
|