diff options
author | Vitaly Takmazov | 2022-11-01 20:28:30 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:58 +0300 |
commit | 4b8d5219a2320e6d3d1e1260574bd6042c97b27e (patch) | |
tree | 11f5607560b2f45b3782a88fdc2962cf696b50f5 /vnext/src/ui/Contacts.js | |
parent | b197e2616db62e25227548bfdb085f4e1f2908f0 (diff) |
Add page titles
Diffstat (limited to 'vnext/src/ui/Contacts.js')
-rw-r--r-- | vnext/src/ui/Contacts.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vnext/src/ui/Contacts.js b/vnext/src/ui/Contacts.js index 0005da9a..1e3e3072 100644 --- a/vnext/src/ui/Contacts.js +++ b/vnext/src/ui/Contacts.js @@ -1,4 +1,5 @@ import { useEffect, useState } from 'react'; +import { Helmet } from 'react-helmet'; import { getChats } from '../api'; @@ -19,6 +20,9 @@ export default function Contacts(props) { }, []); return ( <div className="msg-cont"> + <Helmet> + <title>Messages</title> + </Helmet> <div style={chatListStyle}> { pms.length ? pms.map((chat) => |