15 lines
424 B
JavaScript
15 lines
424 B
JavaScript
import React from "react";
|
|
|
|
import loading from "../../../../assets/images/img-contents-loading@3x.png";
|
|
import { $L } from "../../../utils/helperMethods";
|
|
import css from "./PlayerTabLoading.module.less";
|
|
|
|
export default function PlayerTabLoading() {
|
|
return (
|
|
<div className={css.loadingContainer}>
|
|
<img src={loading} alt="" />
|
|
<div>{$L("Loading Product Details. Please Wait...")}</div>
|
|
</div>
|
|
);
|
|
}
|