import React from 'react' import intl from 'react-intl-universal'; const PluralComponent: React.FC = () => { return (
Plural Examples:
{intl.get("PHOTO", { photoNum: 0 })}
{intl.get("PHOTO", { photoNum: 1 })}
{intl.get("PHOTO", { photoNum: 1000000 })}
); } export default PluralComponent;