interface FeedProps {
  title: string;
  data: string;
}

interface FeedItemProps {
  content: string;
}
