import React, { FC } from 'react'; type CountProps = { count: number } const CountBadge: FC = (props:CountProps) => { return ( <> {props.count} ); }; export default CountBadge;