forked from vergnet/application-amicale
38 lines
884 B
JavaScript
38 lines
884 B
JavaScript
// @flow
|
|
|
|
import * as React from 'react';
|
|
import WebViewScreen from "../../components/WebViewScreen";
|
|
|
|
type Props = {
|
|
navigation: Object,
|
|
}
|
|
|
|
|
|
const URL = 'https://www.etud.insa-toulouse.fr/~amicale';
|
|
|
|
/**
|
|
* Class defining the app's planex screen.
|
|
* This screen uses a webview to render the planex page
|
|
*/
|
|
export default class AmicaleScreen extends React.Component<Props> {
|
|
|
|
render() {
|
|
const nav = this.props.navigation;
|
|
return (
|
|
<WebViewScreen
|
|
navigation={nav}
|
|
data={[
|
|
{
|
|
url: URL,
|
|
icon: '',
|
|
name: '',
|
|
customJS: ''
|
|
},
|
|
]}
|
|
headerTitle={'Amicale'}
|
|
hasHeaderBackButton={true}
|
|
hasSideMenu={false}/>
|
|
);
|
|
}
|
|
}
|
|
|