import { JSXElement } from "solid-js"; import { EngagementIcon } from "../../Util/Icons"; import { Post } from "../../Util/api"; export default function EngagementButton({ post }: { post: Post }): JSXElement { return ( <>

{post.votes}

); }