Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit c85a5d8

Browse files
committed
Refactoring
1 parent 60c3370 commit c85a5d8

File tree

5 files changed

+8
-1
lines changed

5 files changed

+8
-1
lines changed

webapp_frontend/src/components/Router/Router.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, {ReactElement} from "react";
22
import {Redirect, Route, Switch} from "react-router-dom";
33
import Health from "../pages/Health";
4-
import Error404 from "../pages/Error404";
4+
import Error404 from "../pages/errors/Error404";
55
import Login from "../basicElements/Login";
66

77
export default function Router(props: Object): ReactElement {
File renamed without changes.
File renamed without changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import React from "react";
2+
import {storiesOf} from "@storybook/react";
3+
import Error404 from "./Error404";
4+
5+
storiesOf("ColorButton", module)
6+
.add("default", () => <Error404/>
7+
)
File renamed without changes.

0 commit comments

Comments
 (0)