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
2020-05-25 15:53:38 +03:00

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} />
}