c6be9e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from 'react'; const Chat = () => { const chatLink = localStorage.getItem('chat_link'); return ( <iframe src={chatLink} style={{ width: '100%', height: '85vh', border: 'none' }} /> ); }; export default Chat;