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