HR / HR_System /src /components /EmptyState.jsx
Vipooshanb's picture
Improve UI & Frontend mostly done
ce64f95
Raw
History Blame Contribute Delete
193 Bytes
function EmptyState({ title, description }) {
return (
<div className="empty-state">
<strong>{title}</strong>
<p>{description}</p>
</div>
)
}
export default EmptyState