lbry-desktop/ui/js/component/video/internal/loading-screen.jsx

15 lines
325 B
React
Raw Normal View History

import React from "react";
const LoadingScreen = ({ status, spinner = true }) =>
2017-06-08 19:16:38 -04:00
<div className="video__loading-screen">
<div>
{spinner && <div className="video__loading-spinner" />}
2017-06-08 19:16:38 -04:00
<div className="video__loading-status">
2017-06-06 23:32:38 -07:00
{status}
</div>
</div>
</div>;
export default LoadingScreen;