/** * AdminLanguagesKeepAlive * * Keeps the AdminLanguagesPage mounted across route changes so that * long-running AI translation progress, table state, and selections * survive when the user navigates away and returns. */ import React from 'react'; import { AdminLanguagesPage } from './AdminLanguagesPage'; interface AdminLanguagesKeepAliveProps { isVisible: boolean; } export const AdminLanguagesKeepAlive: React.FC = ({ isVisible }) => { return (
); }; export default AdminLanguagesKeepAlive;