From f3e34c063280acab7b3f86d11fca90e658280ed2 Mon Sep 17 00:00:00 2001 From: Josef Skladanka Date: Jan 11 2019 11:57:41 +0000 Subject: erge branch 'master' of ssh://pagure.io/fedora-qa/landingpage --- diff --git a/src/App.js b/src/App.js index 53838e6..6d6f527 100644 --- a/src/App.js +++ b/src/App.js @@ -1,10 +1,11 @@ import React, { Component } from 'react'; -import { Route } from 'react-router'; +import { Route, Switch } from 'react-router'; import { BrowserRouter } from 'react-router-dom' import Wizard from './Wizard'; import LandingPage from './LandingPage'; +import NotFound from './NotFound'; import './App.css'; @@ -13,9 +14,12 @@ class App extends Component { return (
- - - + + + + + +
); diff --git a/src/NotFound.js b/src/NotFound.js new file mode 100644 index 0000000..1866dc7 --- /dev/null +++ b/src/NotFound.js @@ -0,0 +1,23 @@ +import React, { Component } from 'react'; +import WizardForm from './WizardForm'; +import Layout from './Layout'; + +import { Container } from 'reactstrap'; + +class Wizard extends Component { + render() { + return ( + + +

+

404

+

😢

+

+
+
+ + ) + } +} + +export default Wizard; \ No newline at end of file