Skip to content

Instantly share code, notes, and snippets.

@MariusBongarts
Created February 1, 2023 07:21
Show Gist options
  • Save MariusBongarts/53cceba3d3a7268c6d05d665e43571a9 to your computer and use it in GitHub Desktop.
Save MariusBongarts/53cceba3d3a7268c6d05d665e43571a9 to your computer and use it in GitHub Desktop.
import React from "react";
interface HistoryItemProps {
item: chrome.history.HistoryItem;
}
export const HistoryItem: React.FC<HistoryItemProps> = ({ item }) => {
return (
<li>
<span>{new Date(item.lastVisitTime ?? 0).toLocaleTimeString()}</span>
{item.title}
</li>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment