UNPKG

jattac.react.recents

Version:

A React component and utility for tracking and displaying recent browser locations and URLs.

13 lines (12 loc) 302 B
import React from "react"; export interface Recent { windowTitle: string; url: string; lastVisited: string; } export interface RecentsProps { onBeforeRemove?: (items: Recent[]) => boolean; namespace?: string; } declare const Recents: React.FC<RecentsProps>; export default Recents;