アクションシートの依存更新

This commit is contained in:
harukin-OneMix4
2023-12-25 03:37:15 +09:00
parent 049b138ca5
commit 36b199ef98
11 changed files with 227 additions and 173 deletions

View File

@@ -0,0 +1,10 @@
import { registerSheet } from "react-native-actions-sheet";
import { EachTrainInfo } from "./EachTrainInfo";
import { JRSTraInfo } from "./JRSTraInfo";
import { StationDeteilView } from "./StationDeteilView";
registerSheet("EachTrainInfo", EachTrainInfo);
registerSheet("JRSTraInfo", JRSTraInfo);
registerSheet("StationDetailView", StationDeteilView);
export {};