diff --git a/readme.md b/readme.md index 2ad5f42..e565026 100644 --- a/readme.md +++ b/readme.md @@ -45,11 +45,47 @@ t('message', { name: "Alice" }) // ⇒ "Hi Alice!" Using React.Context, we create a top-level component with a Provider holding all the i18n messages for the chosen locale. Then, on each component that needs it, we use a custom hook returning the i18n lookup/formatting function. ```typescript -export function Greeting() { - const t = useI18n(); +import { createContext, useContext } from "react"; +import I18n from "@tuplo/yaintl" + +const I18nContext = createContext({}); + +const messages = { + "en-GB": { "greeting": "Fancy a cuppa, {name}?" }, + "en-US": { "greeting": "Howdy, {name}!" }, + "fr-FR": { "greeting": "Comment ça va, {name}?" }, +} + +function Greeting() { + const t = useContext(I18nContext).build(prefix); + return