Files
new-api-oiss/web/src/pages/Chat/index.js
2024-03-23 21:24:39 +08:00

15 lines
249 B
JavaScript

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;