Compare commits

..

No commits in common. "244f5be217f2fbe5d267ab0cdb63326bdd797ab2" and "8b8df0768b1bf7209e211fc52cdd50e60e52e858" have entirely different histories.

7 changed files with 4 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

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 './pages/OverIchthus';
import { OverIchthus } from './components/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={`./pages/overichthus/`} id="MenuText">
<Link to={`/overichthus/`} id="MenuText">
Over Ichthus
</Link>
</div>

View File

@ -4,10 +4,11 @@ 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: Well, React dotnet, and does it really matter?..</p>
<p>Welcome to your new single-page application, built with:</p>
</div>
);
}