add markdown component

This commit is contained in:
Janis
2023-01-12 11:56:21 +01:00
parent 8f7092cd72
commit 8db442be0f
8 changed files with 1830 additions and 67 deletions

8
types/postData.tsx Normal file
View File

@@ -0,0 +1,8 @@
export interface PostArticle {
name: string;
title: string;
markdown: string;
introduction: string;
categoryId: number;
imageId?: number;
}