@logicflow/dumi-theme-simple
Version:
Simple website theme based on dumi2.
29 lines (28 loc) • 682 B
JavaScript
import React from 'react';
import styles from "./index.module.less";
/**
* Loading
*/
import { jsx as _jsx } from "react/jsx-runtime";
var Loading = function Loading() {
return /*#__PURE__*/_jsx("div", {
style: {
position: 'relative',
height: '100%',
width: '100%'
},
children: /*#__PURE__*/_jsx("div", {
className: styles.loading,
children: /*#__PURE__*/_jsx("div", {
className: "container",
children: /*#__PURE__*/_jsx("div", {
className: "loading-text",
children: /*#__PURE__*/_jsx("p", {
children: "Loading..."
})
})
})
})
});
};
export default Loading;