Skip to content

Commit

Permalink
Merge pull request codestates-seb#365 from codestates-seb/develop
Browse files Browse the repository at this point in the history
[FE] ๐Ÿš€ ๋ฐฐํฌ๋ฅผ ์œ„ํ•œ ๋ธŒ๋žœ์น˜ ๋ณ‘ํ•ฉ
  • Loading branch information
nalsae authored Dec 26, 2023
2 parents e422002 + dbe3e0d commit 4c515fc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
2 changes: 0 additions & 2 deletions client/src/components/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import PostCountInfo from './PostCountInfo';
import Preview from './Preview';
import ReactQueryProvider from './ReactQueryProvider';
import Screws from './Screws';
import SeoHead from './SeoHead';
import ShareButton from './ShareButton';
import ShareModal from './ShareModal';
import TagInput from './TagInput';
Expand Down Expand Up @@ -63,7 +62,6 @@ export {
Preview,
ReactQueryProvider,
Screws,
SeoHead,
ShareButton,
ShareModal,
TagInput,
Expand Down
6 changes: 4 additions & 2 deletions client/src/components/history/HistoryBoard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ import { HistoryPostCard } from '.';
import { EmptyDiary } from '../leaf';
import { ErrorMessage, LoadingMessage } from '../common';

import { HistoryBoradProps } from '@/types/common';
export interface HistoryBoardProps {
paramsId: string;
}

export default function HistoryBoard({ paramsId }: HistoryBoradProps) {
export default function HistoryBoard({ paramsId }: HistoryBoardProps) {
const router = useRouter();

const {
Expand Down
6 changes: 4 additions & 2 deletions client/src/components/history/HistoryComment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ import { HistoryPostCard } from '.';
import { EmptyDiary } from '../leaf';
import { ErrorMessage, LoadingMessage } from '../common';

import { HistoryBoradProps } from '@/types/common';
export interface HistoryBoardProps {
paramsId: string;
}

export default function HistoryComment({ paramsId }: HistoryBoradProps) {
export default function HistoryComment({ paramsId }: HistoryBoardProps) {
const router = useRouter();

const {
Expand Down
6 changes: 4 additions & 2 deletions client/src/components/history/HistoryLikes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ import { HistoryPostCard } from '.';
import { EmptyDiary } from '../leaf';
import { ErrorMessage, LoadingMessage } from '../common';

import { HistoryBoradProps } from '@/types/common';
export interface HistoryBoardProps {
paramsId: string;
}

export default function HistoryLikes({ paramsId }: HistoryBoradProps) {
export default function HistoryLikes({ paramsId }: HistoryBoardProps) {
const router = useRouter();

const {
Expand Down

0 comments on commit 4c515fc

Please sign in to comment.