mirror of https://github.com/mkrhere/pw2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
319 B
20 lines
319 B
4 years ago
|
import React from "react";
|
||
|
import { Link } from "react-router-dom";
|
||
3 years ago
|
import Container from "../../components/Container";
|
||
5 years ago
|
|
||
|
function Home() {
|
||
|
return (
|
||
|
<Container>
|
||
5 years ago
|
<h1>Nothing here</h1>
|
||
5 years ago
|
<p>
|
||
|
404. Back to{" "}
|
||
|
<b>
|
||
5 years ago
|
<Link to="/">MKRhere?</Link>
|
||
5 years ago
|
</b>
|
||
|
</p>
|
||
|
</Container>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default Home;
|