Rocket.Chat.ReactNative/app/containers/List/ListSection.tsx

28 lines
606 B
TypeScript
Raw Normal View History

import React from 'react';
import { StyleSheet, View } from 'react-native';
import { Header } from '.';
const styles = StyleSheet.create({
container: {
marginVertical: 16
}
});
interface IListSection {
children: (React.ReactElement | null)[] | React.ReactElement | null;
title?: string;
translateTitle?: boolean;
}
const ListSection = React.memo(({ children, title, translateTitle }: IListSection) => (
<View style={styles.container}>
{title ? <Header {...{ title, translateTitle }} /> : null}
{children}
</View>
));
ListSection.displayName = 'List.Section';
export default ListSection;