File size: 193 Bytes
a0372d5
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
function EmptyState({ title, description }) {
  return (
    <div className="empty-state">
      <strong>{title}</strong>
      <p>{description}</p>
    </div>
  )
}

export default EmptyState