import React from 'react';
import styled from 'styled-components';

type Props = {
  date: string;
  direction: string;
  withImageNoCaption: boolean;
};

export const MetadataDate = (props: Props) => {
  return <></>;
};