mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-14 21:14:15 +00:00
15 lines
355 B
JavaScript
15 lines
355 B
JavaScript
import React from "react"
|
|
import { Skeleton } from "antd"
|
|
import { LoadingOutlined } from "@ant-design/icons"
|
|
|
|
import "./index.less"
|
|
|
|
export default () => {
|
|
return <div className="skeleton">
|
|
<div className="indicator">
|
|
<LoadingOutlined spin />
|
|
<h3>Loading...</h3>
|
|
</div>
|
|
<Skeleton active />
|
|
</div>
|
|
} |