From a983825dbd4f9b9c6d1429170f96a5e280598b00 Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Thu, 12 Sep 2024 13:04:25 -0400 Subject: [PATCH] oops, move --- packages/astro/ClientRouter.astro | 149 ------------------------------ 1 file changed, 149 deletions(-) delete mode 100644 packages/astro/ClientRouter.astro diff --git a/packages/astro/ClientRouter.astro b/packages/astro/ClientRouter.astro deleted file mode 100644 index 8bda7b780fa0..000000000000 --- a/packages/astro/ClientRouter.astro +++ /dev/null @@ -1,149 +0,0 @@ ---- -type Fallback = 'none' | 'animate' | 'swap'; - -export interface Props { - fallback?: Fallback; - /** @deprecated handleForms is enabled by default in Astro 4.0 - * - * Set `data-astro-reload` on your form to opt-out of the default behavior. - */ - handleForms?: boolean; -} - -const { fallback = 'animate' } = Astro.props; ---- - - - - -