10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
import type { StyleProp, ViewStyle } from "react-native";
|
|
|
|
type TrainMenuProps = {
|
|
style?: StyleProp<ViewStyle>;
|
|
};
|
|
|
|
export default function TrainMenu(_props: TrainMenuProps) {
|
|
return null;
|
|
}
|