check v2
This commit is contained in:
parent
4cc315db30
commit
9679b9008d
11
app/(root)/(tabs)/explore.tsx
Normal file
11
app/(root)/(tabs)/explore.tsx
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import { View, Text } from "react-native";
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
const Explore = () => {
|
||||||
|
return (
|
||||||
|
<View>
|
||||||
|
<Text>explore</Text>
|
||||||
|
</View>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default Explore;
|
||||||
@ -9,7 +9,7 @@ export default function Index() {
|
|||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Text>Edit app/index.tsx to edit this screen.</Text>
|
<Text>test expo & react native</Text>
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
11
app/(root)/(tabs)/profile.tsx
Normal file
11
app/(root)/(tabs)/profile.tsx
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import { View, Text } from "react-native";
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
const Profile = () => {
|
||||||
|
return (
|
||||||
|
<View>
|
||||||
|
<Text>profile</Text>
|
||||||
|
</View>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default Profile;
|
||||||
13
app/(root)/properties/[id].tsx
Normal file
13
app/(root)/properties/[id].tsx
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import { View, Text } from "react-native";
|
||||||
|
import React from "react";
|
||||||
|
import { useLocalSearchParams } from "expo-router";
|
||||||
|
|
||||||
|
const Car = () => {
|
||||||
|
const { id } = useLocalSearchParams();
|
||||||
|
return (
|
||||||
|
<View>
|
||||||
|
<Text>Car {id}</Text>
|
||||||
|
</View>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default Car;
|
||||||
11
app/signin.tsx
Normal file
11
app/signin.tsx
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import { View, Text } from "react-native";
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
|
const SignIn = () => {
|
||||||
|
return (
|
||||||
|
<View>
|
||||||
|
<Text>Sign In</Text>
|
||||||
|
</View>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
export default SignIn;
|
||||||
Loading…
Reference in New Issue
Block a user