@brizy/media-gallery
Version:
10 lines (9 loc) • 412 B
JavaScript
import React from "react";
import { Loading } from "../Loading";
// Important! This page must not have dependencies.
// It is rendered first and is included in initial js, before other pages are lazy loaded.
export var LoadingPage = function() {
return /*#__PURE__*/ React.createElement("div", {
className: "brz-media-gallery-loadingPage"
}, /*#__PURE__*/ React.createElement(Loading, null));
};