From 2ae6a195bbc7d7db237792b341c6373ea1ee7881 Mon Sep 17 00:00:00 2001 From: Felipe Canin Novaes Date: Sat, 14 Mar 2026 21:25:29 -0300 Subject: [PATCH] =?UTF-8?q?feat:=20adicionar=20componente=20de=20redirecio?= =?UTF-8?q?namento=20para=20detalhes=20do=20filamento=20usando=20par=C3=A2?= =?UTF-8?q?metros=20de=20busca?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mobile/app/filament/[id].tsx | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 mobile/app/filament/[id].tsx diff --git a/mobile/app/filament/[id].tsx b/mobile/app/filament/[id].tsx new file mode 100644 index 0000000..5fec4bc --- /dev/null +++ b/mobile/app/filament/[id].tsx @@ -0,0 +1,6 @@ +import { Redirect, useLocalSearchParams } from 'expo-router'; + +export default function FilamentDeepLink() { + const { id } = useLocalSearchParams<{ id: string }>(); + return ; +}