forgeplus-react/src/NotFoundPage.js

42 lines
1.1 KiB
JavaScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React, { Component } from 'react';
import { BrowserRouter as Router, Route, Link } from "react-router-dom";
class NotFoundPage extends Component {
render() {
return (
<div className="App">
404 Page
<br></br>
 
<Link to="/tasks/ixq5euhgrf7y">Index</Link>
| 
<Link to="/shixuns/uznmbg54/challenges">tpm challenges</Link>
| 
<Link to="/shixuns/uznmbg54/shixun_discuss">tpm discuss</Link>
| 
<Link to="/forums/categories/all">forums</Link>
 | 
<Link to="/comment">Comment</Link>
 | 
<Link to="/testMaterial">testMaterial</Link>
 | 
<Link to="/testCodeMirror">testCodeMirror</Link>
 | 
<Link to="/taskList">taskList</Link>
 | 
<Link to="/testRCComponent">testRCComponent</Link>
| 
<Link to="/tpforums">tpforums</Link>
| 
<Link to="/testUrlQuery">url-query test</Link>
</div>
);
}
}
export default NotFoundPage;