diff options
author | Vitaly Takmazov | 2022-10-31 22:48:30 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:58 +0300 |
commit | 8887e1b51565b992f34c955c459125eb85b28483 (patch) | |
tree | 7fc8130f523014864e2d60aa9628e7a7ee7e7dd5 /vnext/src/ui/Contacts.js | |
parent | fc96a9a206a825171da87a7f23cc2ea16b1d645d (diff) |
`useVisitor` hook
Diffstat (limited to 'vnext/src/ui/Contacts.js')
-rw-r--r-- | vnext/src/ui/Contacts.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vnext/src/ui/Contacts.js b/vnext/src/ui/Contacts.js index 2a727b82..0005da9a 100644 --- a/vnext/src/ui/Contacts.js +++ b/vnext/src/ui/Contacts.js @@ -6,6 +6,9 @@ import { getChats } from '../api'; import Contact from './Contact.js'; import { ChatSpinner } from './Spinner'; +/** + * + */ export default function Contacts(props) { const [pms, setPms] = useState([]); useEffect(() => { |