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
7 lines (6 loc) • 338 B
JavaScript
import React from 'react';
import { Box, Text } from 'ink';
export const Footer = () => {
return (React.createElement(Box, { borderStyle: "single", padding: 1, marginTop: 1 },
React.createElement(Text, { color: "gray" }, "\uD83D\uDD04 Data updates automatically | Made with \u2764\uFE0F and Ink | Press Ctrl+C to exit")));
};