import React from 'react';
import { ThemeCompositions } from '@teambit/documenter.theme.theme-compositions';
import { TimeAgo } from './time-ago';
export const YearsAgoWithTimestamp = () => {
return (
);
};
export const MonthTimeAgo = () => {
const date = new Date();
return (
);
};
export const MonthsTimeAgo = () => {
const date = new Date();
return (
);
};
export const HourTimeAgo = () => {
const date = new Date();
return (
);
};
export const HoursTimeAgo = () => {
const date = new Date();
return (
);
};
export const CurrentTime = () => {
return (
);
};
export const CurrentTimeWithIsoDate = () => {
return (
);
};
export const WithTooltip = () => {
return (
);
};