From 1717ca89b3542931026e46ee5fa800468c49b5a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 24 May 2018 17:04:58 +0200 Subject: [PATCH] Change flow syntax --- app/features/app/components/App.js | 2 +- app/features/conference/components/Conference.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/features/app/components/App.js b/app/features/app/components/App.js index 93ab79f..944caa6 100644 --- a/app/features/app/components/App.js +++ b/app/features/app/components/App.js @@ -8,7 +8,7 @@ import config from '../../config'; /** * Main component encapsulating the entire application. */ -export default class App extends Component<{}> { +export default class App extends Component<*> { /** * Initializes a new {@code App} instance. * diff --git a/app/features/conference/components/Conference.js b/app/features/conference/components/Conference.js index d9aa1e7..fcb4c2a 100644 --- a/app/features/conference/components/Conference.js +++ b/app/features/conference/components/Conference.js @@ -14,9 +14,9 @@ import { import config from '../../config'; /** - * Jitsi Meet Window Component + * Conference component. */ -export default class Conference extends Component<{}> { +export default class Conference extends Component<*> { /** * Attach the script */