Compare commits

...

2 Commits

Author SHA1 Message Date
JonathanHerrewijnen
244f5be217 Nog een test run 2020-02-17 09:07:10 +01:00
Theamerix
d9079e2281 Test 2020-02-17 09:06:20 +01:00
7 changed files with 3 additions and 4 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 { Layout } from './components/Layout';
import { Home } from './components/Home'; import { Home } from './components/Home';
import { Leden } from './components/Leden'; import { Leden } from './components/Leden';
import { OverIchthus } from './components/OverIchthus'; import { OverIchthus } from './pages/OverIchthus';
import { Login } from './components/Login'; import { Login } from './components/Login';
export default class App extends Component { export default class App extends Component {

View File

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

View File

@ -4,11 +4,10 @@ export class OverIchthus extends Component {
displayName = OverIchthus.name displayName = OverIchthus.name
render() { render() {
return ( return (
<div> <div>
<h1>Over Ichthus</h1> <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> </div>
); );
} }