import { Col, Row } from "antd"; import type { TimestampEvent } from "../types/types"; import "../css/feed.css"; import shot from "../img/shot.png"; import song from "../img/song.png"; import talk from "../img/talk.png"; import time from "../img/time.png"; export interface FeedItemProps { item: TimestampEvent; } const images = { shot, song, talk, time, }; const FeedItem = ({ item }: FeedItemProps) => { return ( {item.text[0]} {item.type} {item.text[1]} ); }; export default FeedItem;