apartment-clone/app/index.tsx

10 lines
215 B
TypeScript

//This file is needed so that the react native with expo can work
import { Redirect } from "expo-router";
const StartPage = () => {
return <Redirect href="/(tabs)/search_tab" />;
};
export default StartPage;