14 lines
352 B
JavaScript
14 lines
352 B
JavaScript
"use client";
|
|
|
|
import React from "react";
|
|
import { Skeleton } from "antd-mobile";
|
|
import styles from "./index.module.scss";
|
|
export default function SpaceItemSkeleton() {
|
|
return (
|
|
<div className="relative">
|
|
<Skeleton animated className={styles.photoSkeleton} />
|
|
<Skeleton animated className={styles.titleSkeleton} />
|
|
</div>
|
|
);
|
|
}
|