Skip to content

Commit

Permalink
Move navbar.tsx into components/
Browse files Browse the repository at this point in the history
  • Loading branch information
nonylene committed Feb 11, 2024
1 parent df92266 commit fdcdc2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/navbar.tsx → app/components/navbar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Collapse } from "./utils/bootstrap.client";
import { Link, NavLink } from "@remix-run/react";
import { useRef } from "react";
import { Collapse } from "~/utils/bootstrap.client";

const onItemClick = (nav: HTMLElement | null) => {
if (nav !== null) {
Expand Down
2 changes: 1 addition & 1 deletion app/root.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import HeinekenError from "./components/heineken-error";
import Navbar from "./components/navbar";
import { EnvContext } from "./contexts/env";
import Navbar from "./navbar";
import styles from "./root.css";
import { getServerEnv } from "./utils";
// Required to supress size change on the first icon load
Expand Down

0 comments on commit fdcdc2b

Please sign in to comment.