Skip to content

Instantly share code, notes, and snippets.

@Pyrolistical
Last active October 4, 2021 00:08
Show Gist options
  • Save Pyrolistical/6fe29dc308ee28742b0ee815cb583752 to your computer and use it in GitHub Desktop.
Save Pyrolistical/6fe29dc308ee28742b0ee815cb583752 to your computer and use it in GitHub Desktop.
// BEFORE
const App = () => {
const [locale, setLocale] = useState('english');
return <Navigation locale={locale} />;
};
const Navigation = ({ locale }) => {
return <Link locale={locale} href="/about">About</Link>;
};
const Link = ({ locale, href, children }) => {
return <a href={href}>{translate(locale, children)}</a>;
};
// AFTER
const LocaleContext = React.createContext();
const App = () => {
const [locale, setLocale] = useState('english');
return <LocaleContext.Provider value={locale}>
<Navigation />
</LocaleContext.Provider>;
};
const Navigation = () => {
return <Link href="/about">About</Link>;
};
const Link = ({ href, children }) => {
const locale = useContext(LocaleContext);
return <a href={href}>{translate(locale, children)}</a>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment