Skip to content

Instantly share code, notes, and snippets.

@Pyrolistical
Last active October 4, 2021 04:27
Show Gist options
  • Save Pyrolistical/96a261bdb64eb4dd3cb3ed2d497fdfbd to your computer and use it in GitHub Desktop.
Save Pyrolistical/96a261bdb64eb4dd3cb3ed2d497fdfbd to your computer and use it in GitHub Desktop.
import {createContext, useContext} from 'react';
const LocaleContext = createContext();
export const ProvideLocale = Locale.Provider;
export const useLocale = () => {
const locale = useContext(LocaleContext);
return locale;
};
import {useMemo} from 'react';
import {useLocale} from './locale';
function translate(locale, englishKey) {..}
export const useTranslation = (englishKey) => {
const locale = useLocale();
return useMemo(() => translate(locale, englishKey), [locale, englishKey]);
};
import {useTranslation} from './translation';
export const Link = ({ href, children }) => {
const translation = useTranslation(children);
return <a href={href}>{translation}</a>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment