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

Interface Article

website/app/test-api/page.tsx:5–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { useState, useEffect } from 'react';
4
5interface Article {
6 id: number;
7 title: string;
8 url: string;
9 image?: string;
10 category?: string;
11 created_at: string;
12 author: string;
13 comments: number;
14 reactions: number;
15}
16
17interface ArticlesResponse {
18 articles: Article[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected