import { Trans, Plural, plural } from "@lingui/macro" import { Layout } from "lingui-example/components/Layout" import { PluralExample } from "lingui-example/components/PluralExample" export default function Home() { return (

Examples

Plurals

(

)} /> (

{plural(value, { one: "There's one book", other: "There are # books", })}

)} />
) }