카테고리 페이지의 주요 요소를 별도 컴포넌트로 분리

This commit is contained in:
static
2025-01-22 11:28:13 +09:00
parent 88d4757cf7
commit dbe2262d07
10 changed files with 100 additions and 118 deletions

View File

@@ -0,0 +1,13 @@
export interface SelectedSubCategory {
id: number;
dataKey: CryptoKey;
dataKeyVersion: Date;
name: string;
}
export interface SelectedFile {
id: number;
dataKey: CryptoKey;
dataKeyVersion: Date;
name: string;
}