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) • 448 B
JavaScript
import React from 'react';
import { Box, Text } from 'ink';
export const LoadingScreen = () => {
return (React.createElement(Box, { flexDirection: "column", alignItems: "center", justifyContent: "center", padding: 2 },
React.createElement(Text, { color: "cyan" }, "\uD83D\uDE80 Loading Real-Time Data Dashboard..."),
React.createElement(Text, { color: "yellow" }, "Fetching live data from around the world! \uD83C\uDF0D")));
};