application-amicale/screens/PlanningScreen.js

26 lines
562 B
JavaScript
Raw Normal View History

// @flow
import * as React from 'react';
2019-06-25 22:20:24 +02:00
import {Container, Text} from 'native-base';
import CustomHeader from "../components/CustomHeader";
import i18n from "i18n-js";
type Props = {
navigation: Object,
}
2019-06-29 15:43:57 +02:00
/**
* Class defining the app's planning screen
*/
export default class PlanningScreen extends React.Component<Props> {
2019-06-25 22:20:24 +02:00
render() {
const nav = this.props.navigation;
return (
<Container>
<CustomHeader navigation={nav} title={i18n.t('screens.planning')}/>
</Container>
);
}
}