Face-Recognition/app/layouts/components/Translations.tsx
2024-04-16 16:48:06 +07:00

16 lines
142 B
TypeScript

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