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) 196 B
import React from 'react'; import { ISSData } from '../types.js'; interface ISSTrackerProps { issData: ISSData | null; } export declare const ISSTracker: React.FC<ISSTrackerProps>; export {};