import { EmbeddableShell } from '../components/shared/EmbeddableShell'; import { __ } from '../lib/i18n'; import type { SikshyaReactConfig } from '../types'; export function GenericPlaceholderPage(props: { embedded?: boolean; config: SikshyaReactConfig; title: string; description: string; }) { const { config, title, description } = props; const localizedDescription = __(description, 'sikshya'); return (

{localizedDescription}

{__('Data for this screen can be wired to REST or WP list APIs in a follow-up.', 'sikshya')}

); }