1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-16 02:04:54 +01:00
market/src/components/atoms/Table/DateCell.tsx

8 lines
174 B
TypeScript
Raw Normal View History

2020-05-25 14:53:38 +02:00
import React from 'react'
import Time from '../Time'
export default function DateCell({ date }: { date: any }) {
console.log(date)
return date && <Time date={date} />
}