This commit is contained in:
2025-11-18 17:09:10 +05:30
parent b8e4decfba
commit 635e99c183

View File

@@ -9,7 +9,7 @@ export interface LatestProps {
export interface ArticleViewProps { export interface ArticleViewProps {
article: ArticleModel; article: ArticleModel;
onBack: () => void; onBack: () => void;
open_editor?: () => void; // optional because home → article must still work open_editor: () => void;
} }