28 lines
606 B
TypeScript
28 lines
606 B
TypeScript
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;
|