index.jsx 428 Bytes
import { StyledWapperIframe } from '@/components/style';

const Index = () => {
  return (
    <StyledWapperIframe>
      <iframe
        frameBorder="0"
        src="https://yh2-screen.jimilicai.com/"
        style={{ width: '100%', height: '100%' }}
        allowfullscreen="true"
        webkitallowfullscreen="true"
        mozallowfullscreen="true"
      ></iframe>
    </StyledWapperIframe>
  );
};

export default Index;