import React from 'react'; import { Outlet, useLocation } from 'react-router-dom'; import { MobileSwipeBackPanel } from './mobile/MobileSwipeBackPanel'; /** * Wrapper for Outlet that adds route-based animation * Forces remount on route change by using location as key */ export function AnimatedOutlet() { const location = useLocation(); return (
); }