Files
jitsi-meet/react/features/base/react/components/native/NavigateSectionListSectionHeader.js
2021-11-09 09:43:55 +01:00

43 lines
933 B
JavaScript

// @flow
import React, { Component } from 'react';
import type { SetionListSection } from '../../Types';
import Container from './Container';
import Text from './Text';
import styles from './styles';
type Props = {
/**
* A section containing the data to be rendered.
*/
section: SetionListSection
}
/**
* Implements a React/Native {@link Component} that renders the section header
* of the list.
*
* @augments Component
*/
export default class NavigateSectionListSectionHeader extends Component<Props> {
/**
* Renders the content of this component.
*
* @returns {ReactElement}
*/
render() {
const { section } = this.props.section;
return (
<Container style = { styles.listSection }>
<Text style = { styles.listSectionText }>
{ section.title }
</Text>
</Container>
);
}
}