import { View, Text } from "react-native"; import { useCurrentTrain } from "../../../stateBox/useCurrentTrain"; import LottieView from "lottie-react-native"; import { Ionicons } from "@expo/vector-icons"; export const Header = ({ getCurrentTrain }) => { const { currentTrainLoading, setCurrentTrainLoading } = useCurrentTrain(); return ( 次の列車 Next Train {currentTrainLoading == "loading" ? ( ) : currentTrainLoading == "error" ? ( { setCurrentTrainLoading("loading"); getCurrentTrain(); }} /> ) : null} ); };