MCPcopy Create free account
hub / github.com/chokcoco/iCSS / Article

Interface Article

website/app/page.tsx:12–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10import LanguageToggle from './components/LanguageToggle';
11
12interface Article {
13 id: number;
14 title: string;
15 url: string;
16 image?: string;
17 category?: string;
18 created_at: string;
19 author: string;
20 comments: number;
21 reactions: number;
22}
23
24export default function HomePage() {
25 const { t } = useApp();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected