chore: add data empty placeholder (#1913)

This commit is contained in:
boojack
2023-07-08 13:04:12 +08:00
committed by GitHub
parent 7e391bd53d
commit 0292f472e0
30 changed files with 170 additions and 443 deletions

View File

@ -0,0 +1,9 @@
const Empty = () => {
return (
<div className="mx-auto">
<img className="w-24 h-auto dark:opacity-40" src="/assets/empty.png" alt="" />
</div>
);
};
export default Empty;