diff --git a/src/app/feed/components/PostTimeline.tsx b/src/app/feed/components/PostTimeline.tsx new file mode 100644 index 0000000..9fe6ddc --- /dev/null +++ b/src/app/feed/components/PostTimeline.tsx @@ -0,0 +1,31 @@ +import { PostReaction } from '../posts/posts.ts' +import { Temporal } from '@js-temporal/polyfill' + +interface PostTimelineProps { + reactions: PostReaction[] +} + +export function PostTimeline({ reactions }: PostTimelineProps) { + return ( +