diff options
-rw-r--r-- | src/App.js | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -7,7 +7,8 @@ import { Segment, List, Message, - Dropdown + Dropdown, + Loader } from "semantic-ui-react"; import "fomantic-ui-css/semantic.min.css"; import "./App.css"; @@ -208,7 +209,18 @@ class App extends Component { const isOnline = response.source !== undefined; if (!ready) { - return "Loading"; + return ( + <Container style={{ paddingTop: "50px" }}> + <Segment + textAlign="center" + style={{ paddingTop: "25px", paddingBottom: "25px" }} + > + <Loader active inline> + Obteniendo informaciĆ³n del servidor de IceCast ... + </Loader> + </Segment> + </Container> + ); } const currentStream = multipleSources |