You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
568 B
22 lines
568 B
import React from "react";
|
|
import { View} from "react-native";
|
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
|
import { Details } from "../components/Details";
|
|
import { TopBar } from "../components/TopBar";
|
|
import { City, Weather } from "../data/stub";
|
|
|
|
export default function CityDetails({route}){
|
|
const insets = useSafeAreaInsets();
|
|
const statusBarHeight = insets.top;
|
|
|
|
const weather: Weather =route.params.weather;
|
|
|
|
return (
|
|
<View>
|
|
<TopBar/>
|
|
<Details weather={weather}/>
|
|
</View>
|
|
)
|
|
}
|
|
|