import React, { FC } from 'react'; import LikeButtons from './LikeButtons'; import { IUser } from '../interfaces/user'; type Props = { pageId: string, sumOfLikers: number, likerIds: string[], isLiked: boolean, likers: IUser[], onLikeClicked?: ()=>void, } const PageReactionButtons : FC = (props: Props) => { const { pageId, sumOfLikers, likerIds, isLiked, likers, onLikeClicked, } = props; return ( <> {/* TODO: once 80335 is done, merge 77543 branch(parent of 80335) into 77524. (pageContainer dependencies in bookmark, delete modal, rename etc are removed) then place BookMarkButton here TASK: https://estoc.weseek.co.jp/redmine/issues/81076 */} {/* */} ); }; export default PageReactionButtons;