import { useCurrentTrain } from "@/stateBox/useCurrentTrain"; import { View, Text } from "react-native"; import { useThemeColors } from "@/lib/theme"; import { Ionicons } from "@expo/vector-icons"; import { FixedStation } from "./FixedStationBox"; export const FixedNearestStationBox = () => { const { colors } = useThemeColors(); const { nearestStationID } = useCurrentTrain(); if (!nearestStationID) { return ( 現在地を取得中... ); } return ; };