top-tran/toptran-app/src/app/corrida.tsx

10 lines
192 B
TypeScript
Raw Normal View History

2026-05-03 02:47:00 -03:00
import { router } from "expo-router";
import { useEffect } from "react";
2026-05-03 01:16:25 -03:00
export default function Corrida() {
useEffect(() => {
2026-05-03 02:47:00 -03:00
router.replace("/lancamento");
}, []);
return null;
2026-05-03 01:16:25 -03:00
}