mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 23:16:21 +00:00
10 lines
170 B
TypeScript
10 lines
170 B
TypeScript
import { FC } from 'react';
|
|
import { useTranslation } from '../../hooks';
|
|
|
|
export const TranslationBootstrap: FC<{}> = () =>
|
|
{
|
|
useTranslation();
|
|
|
|
return null;
|
|
};
|