diff --git a/src/components/ContactList.jsx b/src/components/ContactList.jsx
index 8c936f4..4fff4e1 100644
--- a/src/components/ContactList.jsx
+++ b/src/components/ContactList.jsx
@@ -1,6 +1,6 @@
import PropTypes from 'prop-types';
import { useState } from 'react';
-import { ListGroup, Row, Col, Button } from 'react-bootstrap';
+import { ListGroup, Row, Col, Button, Alert } from 'react-bootstrap';
import { ContactEditModal } from './ContactEditModal';
/**
@@ -65,6 +65,13 @@ export const ContactList = ({
return (
<>
+ {sortedContacts.length === 0 ? (
+ No contacts found. Please add contacts.
+ ) : (
+
+ You have {sortedContacts.length} contacts.
+
+ )}
{sortedContacts.map(contact => (