Files
NotionNext/components/Loading.js
tangly1024 e791752e68 async theme
2023-06-04 17:17:38 +08:00

11 lines
283 B
JavaScript

/**
* 主题文件被加载出之前的占位符
* @returns
*/
const Loading = () => {
return <div className="w-screen h-screen flex justify-center items-center">
<h1>Loading... <i className='ml-2 fas fa-spinner animate-spin' /></h1>
</div>
}
export default Loading