Skip to content

Commit

Permalink
refactor : change folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
f0rever0 committed Oct 21, 2023
1 parent 7f2037a commit 74553a9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/views/BlogPage/BlogPage.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import PageLayout from '@src/components/common/PageLayout';
import Navigation from './components/navigation';
import BlogTab from './components/blogTab';

export default function BlogPage() {
return (
<PageLayout>
<Navigation />
<BlogTab />
</PageLayout>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useState } from 'react';
import * as S from './style';
import { BlogTabList } from './types';

export default function Navigation() {
export default function BlogTab() {
const [selectTab, setSelectTab] = useState<keyof BlogTabList>('REVIEW');
const blogTabList: BlogTabList = {
REVIEW: {
Expand Down

0 comments on commit 74553a9

Please sign in to comment.