16 lines
142 B
TypeScript
16 lines
142 B
TypeScript
|
|
|
|
|
|
interface Props {
|
|
text: string
|
|
}
|
|
|
|
const Translations = ({ text }: Props) => {
|
|
|
|
|
|
|
|
return <>{text}</>
|
|
}
|
|
|
|
export default Translations
|