Skip to content
Snippets Groups Projects
Commit 5f7e1a30 authored by Matt Kirby's avatar Matt Kirby
Browse files

Added Post type

parent bc87f656
No related branches found
No related tags found
1 merge request!8create "Basic components"
import { User } from "./user"
export type Post = {
User: User;
Content: string;
Timestamp: string;
Likes: User[];
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment