|
|
@ -0,0 +1,13 @@ |
|
|
|
import React, { Component } from 'react'; |
|
|
|
import Background from "./Background"; |
|
|
|
|
|
|
|
import './css/LoadingScreen.css'; |
|
|
|
|
|
|
|
export function LoadingScreen({className}) { |
|
|
|
return ( |
|
|
|
<div className={`Loading ${className}`}> |
|
|
|
<Background /> |
|
|
|
<div className="text color-primary">Loading...</div> |
|
|
|
</div> |
|
|
|
) |
|
|
|
} |