8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
import { Redirect } from "expo-router";
|
|
|
|
const App = () => {
|
|
return <Redirect href="/(auth)/welcome" />;
|
|
};
|
|
|
|
export default App;
|