调整资源组件

This commit is contained in:
2025-04-26 21:59:05 +08:00
parent 36f5bf4445
commit bb93977396
3 changed files with 78 additions and 30 deletions

View File

@@ -0,0 +1,14 @@
export type TagType = {
id: string;
name: string;
color: string;
}
export interface Resource {
id: string;
title: string;
description: string;
imageUrl: string;
link: string;
tags: TagType[];
}