1
0
Ответвление 0
ответвлён от vergnet/application-amicale
application-amicale/src/screens/Websites/TutorInsaWebsiteScreen.js

18 строки
434 Б
JavaScript

// @flow
import * as React from 'react';
import WebViewScreen from "../../components/Screens/WebViewScreen";
const URL = 'https://www.etud.insa-toulouse.fr/~tutorinsa/';
/**
* Class defining the app's available rooms screen.
* This screen uses a webview to render the page
*/
export const TutorInsaWebsiteScreen = (props: Object) => {
return (
<WebViewScreen
{...props}
url={URL}/>
);
};