Skip to content

Instantly share code, notes, and snippets.

@diegorodriguesvieira
Last active August 31, 2020 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegorodriguesvieira/c20b73d7fb9203181e86426dee91a58d to your computer and use it in GitHub Desktop.
Save diegorodriguesvieira/c20b73d7fb9203181e86426dee91a58d to your computer and use it in GitHub Desktop.
test
import React from 'react';
import Typography from '@components/Typography';
import useTranslation from '@i18n';
function MyComponent() {
const $t = useTranslation();
return <Typography>{$t('name')}</Typography>
}
export default MyComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment