1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-30 22:01:44 +02:00
market/src/components/atoms/Table/DateCell.tsx
2020-05-27 17:20:31 +03:00

7 lines
154 B
TypeScript

import React from 'react'
import Time from '../Time'
export default function DateCell({ date }: { date: any }) {
return date && <Time date={date} />
}