Finished blogs

This commit is contained in:
Nicholas Orlowsky 2022-07-06 01:05:31 -05:00
parent 42c4281276
commit af69ba98ba
No known key found for this signature in database
GPG key ID: 3845F78A73B14100
18 changed files with 311 additions and 19 deletions

7
src/types/Blog.ts Normal file
View file

@ -0,0 +1,7 @@
export default interface Blog {
title: string,
date: Date
image: string,
mdfile: string,
private: boolean
}