Files
sub2api-mobile/app/(tabs)/index.tsx

6 lines
122 B
TypeScript
Raw Normal View History

import { Redirect } from 'expo-router';
2026-03-07 18:12:39 +08:00
export default function IndexScreen() {
return <Redirect href="/monitor" />;
2026-03-07 18:12:39 +08:00
}