123456789101112131415161718192021222324252627 |
- import React from 'react'
- import styles from './index.module.scss'
- import { useHistory } from 'react-router-dom'
- function A5Mobile({ show, setShow }: { show: boolean; setShow: (show: boolean) => void }) {
- const history = useHistory()
- return (
- <div className={styles.A5Mobile} style={{ display: show ? 'block' : 'none' }}>
- <div className='title'>
- <img src={require('./image/title.png')} alt='' />
- </div>
- <div
- className='button'
- onClick={() => {
- setShow(false)
- history.push('/home?m=SG-56imSLC7Zli')
- window.location.reload()
- }}
- >
- <img src={require('./image/button.png')} alt='' />
- </div>
- </div>
- )
- }
- const MemoA5Mobile = React.memo(A5Mobile)
- export default MemoA5Mobile
|