This commit is contained in:
Aarni Koskela
2022-02-11 16:54:44 +02:00
parent 5c237084f5
commit a4a04f1dac
14 changed files with 172 additions and 224 deletions

9
data/events.ts Normal file
View File

@@ -0,0 +1,9 @@
export interface KKEvent {
image: string;
imageLink: string;
body: string;
type: "github" | "twitter";
user: string;
userLink: string;
timestamp: Date;
}