mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-02 11:57:04 +08:00
20 lines
390 B
JavaScript
20 lines
390 B
JavaScript
import React from "react";
|
|
import { Icon } from "./";
|
|
import "./video.scss";
|
|
|
|
export class Video extends React.Component {
|
|
constructor(props){
|
|
super(props);
|
|
}
|
|
|
|
render(){
|
|
return (
|
|
<div className="component_video">
|
|
<div className="loader">
|
|
<Icon name="loading"/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|