UNPKG

@jjordy/swr-devtools

Version:

Devtools for SWR

13 lines (12 loc) 335 B
import React from "react"; import "fake-indexeddb/auto"; export interface KeysProps { keys: string[]; selectedKey: string; onSelect: (key: string) => void; onClear: (key: string) => void; onRevalidate: (key: string) => void; theme: string; children?: React.ReactNode; panelWidth?: number; }