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; ---- - - - - -