import VotesCount from "src/Components/VotesCount/VotesCount" import { Story } from "src/features/Posts/types" import Header from "./Header" import { BiComment } from 'react-icons/bi' interface Props { story: Story } export default function StoryCard({ story }: Props) { return (

{story.title}

{story.excerpt}


{story.comments_count} Comments
) }