index.js 337 Bytes
Newer Older
zhanghaozhe committed
1 2
import React from 'react'
import './index.scss'
xuzhenghua committed
3
import { CallApp} from '../../../common'
zhanghaozhe committed
4 5 6 7 8

const OpenApp = () => {
    return (
        <div className='open-app'>
            <p className='left'>更多试题请前往App查看</p>
xuzhenghua committed
9
            <CallApp className='right'>APP打开</CallApp>
zhanghaozhe committed
10 11 12 13 14
        </div>
    )
}

export default OpenApp