index.js 315 Bytes
Newer Older
zhanghaozhe committed
1 2 3
import React from "react"
import "./index.scss"
import { CallApp } from "../../../common"
zhanghaozhe committed
4 5

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

zhanghaozhe committed
14
export default OpenApp