12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
import React from 'react';
|
|
|
|
const CardBoxComponentEmpty = () => {
|
|
return (
|
|
<div className='text-center py-24 text-gray-500 dark:text-slate-400'>
|
|
<p>Nothing's here…</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CardBoxComponentEmpty;
|