import React from "react";
const Loading = () => {
return (
);
};
export default Loading;
Loading.AbsoluteCenter = (() => {
const AbsoluteCenter = ({ children }: { children?: React.ReactNode }) => {
return (
{children}
);
};
AbsoluteCenter.displayName = "LoadingAbsoluteCenter";
return AbsoluteCenter;
})();