mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-10-02 16:16:38 +08:00
16 lines
250 B
JavaScript
16 lines
250 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;
|