diff --git a/src/Router.jsx b/src/Router.jsx index 259b79a..cdc883d 100644 --- a/src/Router.jsx +++ b/src/Router.jsx @@ -1,20 +1,22 @@ import React from "react"; import { Routes, BrowserRouter, Route } from "react-router-dom"; -import Layout from "./components/Layout.jsx"; import Home from "./components/Home.jsx"; -import Scripts from "./components/Scripts.jsx"; import Executions from "./components/Executions.jsx"; -import NoMatch from "./components/NoMatch.jsx"; +import Scripts from "./components/Scripts.jsx"; import Dagre from "./components/dagre/Dagre.jsx"; +import NoMatch from "./components/NoMatch.jsx"; +import Layout from "./components/Layout.jsx"; const Router = () => { return ( - } /> - } /> - } /> - } /> + }> + } /> + } /> + } /> + } /> + } /> diff --git a/src/components/Executions.jsx b/src/components/Executions.jsx index 34f084a..f10041f 100644 --- a/src/components/Executions.jsx +++ b/src/components/Executions.jsx @@ -27,7 +27,7 @@ class Executions extends React.Component { return

Loading

; } else { return ( - + <>

Executions

@@ -81,7 +81,7 @@ class Executions extends React.Component { })}
-
+ ); } } diff --git a/src/components/Home.jsx b/src/components/Home.jsx index 73e098c..62fce3b 100644 --- a/src/components/Home.jsx +++ b/src/components/Home.jsx @@ -6,17 +6,15 @@ import ScriptsTree from "./treebeard/ScriptsTree"; class Home extends React.Component { render() { return ( - - - - -

Welcome to SPipes editor

-

- -
-
-
-
+ + + +

Welcome to SPipes editor

+

+ +
+
+
); } } diff --git a/src/components/NoMatch.jsx b/src/components/NoMatch.jsx index e1ccda2..6e232ba 100644 --- a/src/components/NoMatch.jsx +++ b/src/components/NoMatch.jsx @@ -5,10 +5,10 @@ import Layout from "./Layout"; const NoMatch = () => { return ( - + <> Page not found! - + ); }; diff --git a/src/components/Scripts.jsx b/src/components/Scripts.jsx index 985a03f..352b6ae 100644 --- a/src/components/Scripts.jsx +++ b/src/components/Scripts.jsx @@ -6,15 +6,13 @@ import ScriptsTree from "./treebeard/ScriptsTree"; class Scripts extends React.Component { render() { return ( - - - - - - - - - + + + + + + + ); } }