carType page over
This commit is contained in:
8
components/lib_components/text.tsx
Normal file
8
components/lib_components/text.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
'use client'
|
||||
|
||||
import { useTranslation } from "react-i18next";
|
||||
|
||||
export default function Text({txt}:{txt:string}) {
|
||||
const { t } = useTranslation();
|
||||
return <div>{t(txt)}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user