Skip to content

Commit

Permalink
chore(app): Layout/Banner 폴더이름을 camelCase 에서 PascalCase 로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
innocarpe committed Sep 9, 2023
1 parent 8f59f51 commit 0f2acf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/react-world/src/components/home/HomeBanner.styled.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import styled from '@emotion/styled';
import { Banner, BannerTitle } from '../shared/banner/Banner.styled';
import { Banner, BannerTitle } from '../shared/Banner/Banner.styled';

export const HomeBannerContainer = styled(Banner)`
background: #5cb85c;
Expand Down
2 changes: 1 addition & 1 deletion apps/react-world/src/routes/Routes.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createBrowserRouter, RouterProvider } from 'react-router-dom';
import { Layout } from '../components/shared/layout/Layout';
import { Layout } from '../components/shared/Layout/Layout';
import { HomePage } from '../pages/home';
import { LoginPage } from '../pages/login';
import { RegisterPage } from '../pages/register';
Expand Down

0 comments on commit 0f2acf8

Please sign in to comment.