UNPKG

realtime-data-cli-tool

Version:

A real-time data dashboard CLI tool built with Ink, React, and TypeScript that displays live ISS location, weather, Bitcoin prices, random facts, and inspirational quotes

8 lines (7 loc) 195 B
import React from 'react'; import { FactData } from '../types.js'; interface RandomFactProps { fact: FactData | null; } export declare const RandomFact: React.FC<RandomFactProps>; export {};