import { Addressable } from 'types' import { abbreviateNumber } from 'utils' import { Zap } from './Zap' import { Reactions } from './Reactions' type InteractionsProps = { addressable: Addressable commentCount: number } export const Interactions = ({ addressable, commentCount }: InteractionsProps) => { return (
) }