mirror of
https://github.com/PlayEdu/frontend.git
synced 2025-06-21 19:19:33 +08:00
13 lines
336 B
TypeScript
13 lines
336 B
TypeScript
import styles from "./index.module.scss";
|
|
import React from "react";
|
|
import { Image } from "antd";
|
|
import empty from "../../assets/images/commen/empty.png";
|
|
|
|
export const Empty: React.FC = () => {
|
|
return (
|
|
<div className={styles["img-box"]}>
|
|
<Image src={empty} width={400} height={400} preview={false} />
|
|
</div>
|
|
);
|
|
};
|