import { useQuery } from "@tanstack/react-query"; import { View, Text, ScrollView } from "react-native"; import { Container } from "@/components/container"; import { trpc } from "@/utils/trpc"; export default function Home() { const healthCheck = useQuery(trpc.healthCheck.queryOptions()); return ( BETTER T STACK API Status {healthCheck.isLoading ? "Checking..." : healthCheck.data ? "Connected" : "Disconnected"} ); }