Skip to content

Commit

Permalink
prettify code
Browse files Browse the repository at this point in the history
  • Loading branch information
moficodes committed Aug 3, 2020
1 parent bcf118a commit 7eedc4c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion services/ui/frontend/src/Router.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import BookingLayout from "components/BookingLayout/BookingLayout";
import HomeLayout from "components/HomeLayout/HomeLayout";
import ErrorLayout from "components/ErrorLayout/ErrorLayout";

import {GraphPage} from "components/ServiceGraph";
import { GraphPage } from "components/ServiceGraph";

function ProviderWrapper({ children }) {
const store = createStore(
Expand Down
4 changes: 2 additions & 2 deletions services/ui/frontend/src/components/ServiceGraph/Graph.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useEffect, useState } from 'react';
import React, { useEffect, useState } from "react";
import Graph from "react-graph-vis";

function runThroughNodes(parent, nodes, edges, level) {
Expand All @@ -16,7 +16,7 @@ function runThroughNodes(parent, nodes, edges, level) {
font: {
multi: "html",
size: 20,
}
},
});
}

Expand Down
4 changes: 2 additions & 2 deletions services/ui/frontend/src/components/ServiceGraph/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import {GraphPage} from "./Graph";
import { GraphPage } from "./Graph";

export {GraphPage};
export { GraphPage };

0 comments on commit 7eedc4c

Please sign in to comment.