Add tags to string

Add new post
This commit is contained in:
DefectingCat
2022-10-24 11:43:12 +08:00
parent 5f94763ca5
commit 5b18d7d94d
7 changed files with 176 additions and 6 deletions

View File

@ -14,7 +14,7 @@ export type AppPropsWithLayout = AppProps & {
export interface MyMatters {
title: string;
date: string;
tags: string[];
tags: string[] | string;
}
export interface Post extends MyMatters {