index.js 398 Bytes
Newer Older
zhanghaozhe committed
1 2 3
import React from "react"
import { Link } from "react-router-dom"
import "./index.scss"
4 5

const AllCourseNavigation = React.memo(() => {
zhanghaozhe committed
6 7 8 9 10 11 12 13
  return (
    <div className="all-course">
      <Link to="/classify">
        <p>查看全部课程 &gt;&gt;</p>
        <span>数学基础、数学结构、大数据实战、Python...</span>
      </Link>
    </div>
  )
14 15
})

zhanghaozhe committed
16
export default AllCourseNavigation