index.js 294 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9 10 11 12 13
import React from 'react'
import './index.scss'

const OpenApp = () => {
    return (
        <div className='open-app'>
            <p className='left'>更多试题请前往App查看</p>
            <button className='right'>APP打开</button>
        </div>
    )
}

export default OpenApp