// External imports import * as React from "react" import { Link } from "react-router-dom" import { DateTime } from "fawkes-server/build/support" // Internal imports import * as ce from "../../../../../helpers/componentEnhancer" export interface ParentProps { value: DateTime link?: string } interface StateProps { } interface DispatchProps { } interface LocalState { } class AdvancedTableBodyCellDateTime extends React.Component< ParentProps & StateProps & DispatchProps & ce.EnhancedPropsPrivate, LocalState > { render() { const value = this.props.value.toString() return ( {this.props.link ? {value} : value} ) } } const stateMappings: ce.StateMappings = (s, props) => ({}) const dispatchMappings: ce.DispatchMappings = (d, props) => ({}) export default ((): React.ComponentType => ce.enhance(AdvancedTableBodyCellDateTime, { stateMappings, dispatchMappings }))()