mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-19 05:45:01 -04:00
* you know, you could just work on first try * fix extension * configure plugin and fix few translation issues * more * more keys * and more * more keys and sort * commit msg * we like keys here * end my suffering * jk i just love keys * key fix * add turkish * add german * Entendido * Demnächst * Mettre une étoile sur GitHub * 成功 * pnpm-lock * vite plugin * remove i18next backends --------- Co-authored-by: Brendan Allan <brendonovich@outlook.com>
13 lines
242 B
TypeScript
13 lines
242 B
TypeScript
import { useLocale } from '~/hooks';
|
|
|
|
import { Heading } from '../Layout';
|
|
|
|
export const Component = () => {
|
|
const { t } = useLocale();
|
|
return (
|
|
<>
|
|
<Heading title={t('security')} description={t('security_description')} />
|
|
</>
|
|
);
|
|
};
|