employee-fr/app/layouts/components/Translations.tsx
rizal.productzilla 0e91646c75 first commit
2024-04-16 16:48:48 +07:00

16 lines
142 B
TypeScript

interface Props {
text: string
}
const Translations = ({ text }: Props) => {
return <>{text}</>
}
export default Translations