.
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 1m46s

This commit is contained in:
ParkWonYeop
2025-12-27 21:27:06 +09:00
parent b952d3a491
commit 72e48ded53
6 changed files with 221 additions and 38 deletions

View File

@@ -14,6 +14,7 @@ export interface Post {
viewCount: number;
createdAt: string;
content?: string;
tags: string[]; // 🆕 태그 배열 속성 추가
}
// 3. 게시글 목록 페이징 응답
@@ -36,6 +37,7 @@ export interface AuthResponse {
export interface Category {
id: number;
name: string;
parentId?: number | null; // 🆕 부모 카테고리 ID 추가
children: Category[];
}