Skip to content

Commit

Permalink
[#84] Move layout component to a separate layouts folder
Browse files Browse the repository at this point in the history
  • Loading branch information
palagdan committed Nov 12, 2024
1 parent e7eecca commit 7a7fadb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Router.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import HomePage from "./pages/HomePage.jsx";
import ExecutionsPage from "./pages/ExecutionsPage.jsx";
import ScriptsPage from "./pages/ScriptsPage.jsx";
import DagrePage from "./pages/Dagre/DagrePage.jsx";
import Layout from "./components/Layout.jsx";
import Layout from "./layouts/Layout.jsx";
import NotFoundPage from "./pages/NotFoundPage.jsx";

const Router = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layout.jsx → src/layouts/Layout.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import { Container, Icon } from "semantic-ui-react";
import { Navbar } from "react-bootstrap";
import NavbarMenu from "./NavbarMenu";
import NavbarMenu from "../components/NavbarMenu.jsx";
import { Outlet } from "react-router-dom";

const Layout = ({ children }) => {
Expand Down

0 comments on commit 7a7fadb

Please sign in to comment.