one-api/web/src/pages/Chat/index.jsx
2023-07-15 21:41:23 +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;