// @flow
import * as ICONS from 'constants/icons';
import * as REACTION_TYPES from 'constants/reactions';
import React from 'react';
import classnames from 'classnames';
import Button from 'component/button';
type Props = {
myReaction: ?string,
};
export default function CommentReactions(props: Props) {
const { myReaction } = props;
return (
<>
>
);
}