diff options
Diffstat (limited to 'vnext/src/index.js')
-rw-r--r-- | vnext/src/index.js | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/vnext/src/index.js b/vnext/src/index.js index 74a332fd..c2d2b6b7 100644 --- a/vnext/src/index.js +++ b/vnext/src/index.js @@ -3,7 +3,7 @@ import ReactDOM from 'react-dom'; function LoadingView(props) { return ( - <div id="body"> + <> <div id="header"> <div id="header_wrapper"> <div id="logo"> @@ -14,11 +14,17 @@ function LoadingView(props) { <input name="search" className="text" placeholder="Search..." /> </form> </div> - <nav id="global"></nav> + <nav id="global"> + <a href="/">Loading...</a> + </nav> </div> </div> - <div id="wrapper"></div> - </div> + <div id="wrapper"> + <div id="content"> + <div className="lds-ripple"><div></div><div></div></div> + </div> + </div> + </> ); } |