added recent list

This commit is contained in:
Ritwik Heda
2018-08-01 11:41:54 -05:00
committed by yanas
parent af7c69a1aa
commit 046b06e436
32 changed files with 1301 additions and 607 deletions

View File

@@ -0,0 +1,40 @@
// @flow
import React, { Component } from 'react';
import { Text, Container } from './index';
import styles from './styles';
import type { SetionListSection } from '../../Types';
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
*
* @extends 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>
);
}
}