Spaces:
Running
Running
File size: 474 Bytes
947c08e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import React, { useEffect } from 'react';
import { Link, router, usePathname, Router, Redirect } from 'expo-router';
import { StyleSheet, View } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import { Platform } from 'react-native';
const Index = () => {
const pathname = usePathname()
if (pathname === "/" || pathname === "") return (
<Redirect href="/view/colamanga/manga-id90484" />
)
}
export default Index;
|