From c89cc6ee2a32d686b081b4b5662c05a18270d110 Mon Sep 17 00:00:00 2001 From: George Lima Date: Wed, 19 Dec 2018 12:59:31 -0300 Subject: [PATCH] feature: add LoadingScreen in with-daemon-status-check --- app/components/with-daemon-status-check.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/components/with-daemon-status-check.js b/app/components/with-daemon-status-check.js index e587b7d..16c517b 100644 --- a/app/components/with-daemon-status-check.js +++ b/app/components/with-daemon-status-check.js @@ -1,6 +1,8 @@ // @flow import React, { type ComponentType, Component } from 'react'; +import { LoadingScreen } from './loading-screen'; + import rpc from '../../services/api'; type State = { @@ -51,6 +53,6 @@ export const withDaemonStatusCheck = ( return ; } - return 'Daemon is starting...'; + return ; } };