19 lines
		
	
	
		
			777 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			777 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { registerSheet } from "react-native-actions-sheet";
 | |
| import { EachTrainInfo } from "./EachTrainInfo";
 | |
| import { JRSTraInfo } from "./JRSTraInfo";
 | |
| import { StationDeteilView } from "./StationDeteilView";
 | |
| import { TrainMenuLineSelector } from "./TrainMenuLineSelector";
 | |
| import { TrainIconUpdate } from "./TrainIconUpdate";
 | |
| import { SpecialTrainInfo } from "./SpecialTrainInfo";
 | |
| import { Social } from "./SocialMenu";
 | |
| 
 | |
| registerSheet("EachTrainInfo", EachTrainInfo);
 | |
| registerSheet("JRSTraInfo", JRSTraInfo);
 | |
| registerSheet("StationDetailView", StationDeteilView);
 | |
| registerSheet("TrainMenuLineSelector", TrainMenuLineSelector);
 | |
| registerSheet("TrainIconUpdate", TrainIconUpdate);
 | |
| registerSheet("SpecialTrainInfo", SpecialTrainInfo);
 | |
| registerSheet("Social", Social);
 | |
| 
 | |
| export {};
 |