// @flow import * as React from 'react'; import ThemeManager from "../utils/ThemeManager"; import WebViewScreen from "../components/WebViewScreen"; type Props = { navigation: Object, } const URL = 'http://planex.insa-toulouse.fr/salles.php'; /** * Class defining the app's planex screen. * This screen uses a webview to render the planex page */ export default class AvailableRoomScreen extends React.Component { customInjectedJS: string; constructor() { super(); this.customInjectedJS = ''; } render() { const nav = this.props.navigation; return ( ); } }