ComicMTL / frontend /app /index.tsx
BloodyInside's picture
new
cffd4ca
raw
history blame contribute delete
483 Bytes
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="/read/colamanga/manga-nf048578?idx=165" />
)
}
export default Index;