mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
14 lines
325 B
JavaScript
14 lines
325 B
JavaScript
import React from "react";
|
|
|
|
const LoadingScreen = ({ status, spinner = true }) =>
|
|
<div className="video__loading-screen">
|
|
<div>
|
|
{spinner && <div className="video__loading-spinner" />}
|
|
|
|
<div className="video__loading-status">
|
|
{status}
|
|
</div>
|
|
</div>
|
|
</div>;
|
|
|
|
export default LoadingScreen;
|