Files
jitsi-meet/react/features/settings/components/native/FormSection.tsx
Robert Pintilii 1ba7765898 ref(TS) Convert some native components to TS (#13281)
Remove some @ts-ignores
2023-05-02 11:09:38 +03:00

46 lines
1005 B
TypeScript

import React from 'react';
import { WithTranslation } from 'react-i18next';
import { Text, View } from 'react-native';
import { translate } from '../../../base/i18n/functions';
import styles from './styles';
/**
* The type of the React {@code Component} props of {@link FormSection}.
*/
interface IProps extends WithTranslation {
/**
* The children to be displayed within this Link.
*/
children: React.ReactNode;
/**
* The i18n key of the text label of the section.
*/
label: string;
}
/**
* Section accordion on settings form.
*
* @returns {React$Element<any>}
*/
function FormSection({ children, label, t }: IProps) {
return (
<View>
<View
style = { styles.formSectionTitleContent }>
<Text style = { styles.formSectionTitleText }>
{ t(label) }
</Text>
</View>
{ children }
</View>
);
}
export default translate(FormSection);