This commit is contained in:
Theamerix 2020-02-17 09:06:20 +01:00
parent 8b8df0768b
commit d9079e2281
7 changed files with 15 additions and 16 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -3,7 +3,7 @@ import { Route } from 'react-router';
import { Layout } from './components/Layout';
import { Home } from './components/Home';
import { Leden } from './components/Leden';
import { OverIchthus } from './components/OverIchthus';
import { OverIchthus } from './pages/OverIchthus';
import { Login } from './components/Login';
export default class App extends Component {

View File

@ -36,7 +36,7 @@ export class NavMenu extends Component {
</div>
<div id="MenuBlock">
<Link to={`/overichthus/`} id="MenuText">
<Link to={`./pages/overichthus/`} id="MenuText">
Over Ichthus
</Link>
</div>

View File

@ -4,11 +4,10 @@ export class OverIchthus extends Component {
displayName = OverIchthus.name
render() {
return (
<div>
<h1>Over Ichthus</h1>
<p>Welcome to your new single-page application, built with:</p>
<p>Welcome to your new single-page application, built with: Well, React dotnet, and does it really matter?..</p>
</div>
);
}