Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

ds147000 / react-project-storage

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • react-project-storage
  • src
  • view
  • error
  • 401.js
  • GGbong's avatar
    修改401页面提示 · da53ce0d
    GGbong committed Jul 22, 2020
    da53ce0d Browse Directory
401.js 223 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11
import React from 'react'

const Page = ({ history }) => {
    return (
        <div>
            <h1 onClick={() => history.push('/')} >401,暂无权限。点击回到首页</h1>
        </div>
    )
}

export default Page