// @flow import React from 'react'; type Props = { likeCount: number, dislikeCount: number, }; const RatioBar = (props: Props) => { const { likeCount, dislikeCount } = props; const like = (1 / (likeCount + dislikeCount)) * likeCount; if (like || dislikeCount) { return (