started with post editor

This commit is contained in:
u80864958
2025-04-11 15:38:04 +02:00
parent fb2d784421
commit efe902639e
29 changed files with 387 additions and 16 deletions

View File

@ -0,0 +1,10 @@
export interface Post {
id: number;
title: string;
tldr: string;
content: string;
}
export interface Comment {
content: string;
}