Add Boards management to sitesettings (#107)

This commit is contained in:
Riccardo Graziosi
2022-05-08 16:36:35 +02:00
committed by GitHub
parent 7b8a4d6709
commit 6be2394dc5
44 changed files with 1464 additions and 112 deletions

View File

@@ -0,0 +1,7 @@
interface IBoardJSON {
id: number;
name: string;
description?: string;
}
export default IBoardJSON;