Files
NotionNext/components/Loading.js
tangly1024.com 1f3ac7f5ae 过渡动画
2023-06-07 18:43:54 +08:00

12 lines
310 B
JavaScript

/**
* 异步文件加载过程中的占位符
* @returns
*/
const Loading = (props) => {
return <div id="loading-bg" className="-z-10 w-screen h-screen flex justify-center items-center fixed left-0 top-0">
<i className='fas fa-spinner animate-spin text-3xl' />
</div>
}
export default Loading