Skip to content

Commit 574b844

Browse files
committed
refactor(web): rename files and folders for more consistent naming
1 parent be0658e commit 574b844

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed
File renamed without changes.
File renamed without changes.

web/src/layout/header/navbar/Menu.tsx renamed to web/src/layout/Header/navbar/Menu.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const ButtonContainer = styled.div`
1717
align-items: center;
1818
`;
1919

20-
const Explore: React.FC = () => {
20+
const Menu: React.FC = () => {
2121
const [theme, toggleTheme] = useToggleTheme();
2222
const isLightTheme = theme === "light";
2323
const buttons = [
@@ -42,4 +42,4 @@ const Explore: React.FC = () => {
4242
);
4343
};
4444

45-
export default Explore;
45+
export default Menu;

web/src/layout/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import React from "react";
22
import styled from "styled-components";
33
import { Outlet } from "react-router-dom";
4-
import Header from "./header";
5-
import Footer from "./footer";
4+
import Header from "./Header";
5+
import Footer from "./Footer";
66

77
const Container = styled.div`
88
min-height: 100%;

0 commit comments

Comments
 (0)