Application Android et IOS pour l'amicale des élèves
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TutorInsaWebsiteScreen.js 437B

123456789101112131415161718
  1. // @flow
  2. import * as React from 'react';
  3. import WebViewScreen from "../../../components/Screens/WebViewScreen";
  4. const URL = 'https://www.etud.insa-toulouse.fr/~tutorinsa/';
  5. /**
  6. * Class defining the app's available rooms screen.
  7. * This screen uses a webview to render the page
  8. */
  9. export const TutorInsaWebsiteScreen = (props: Object) => {
  10. return (
  11. <WebViewScreen
  12. {...props}
  13. url={URL}/>
  14. );
  15. };