diff --git "a/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/Column/index.tsx" "b/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/Column/index.tsx"
deleted file mode 100644
index 1d89551a..00000000
--- "a/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/Column/index.tsx"
+++ /dev/null
@@ -1,38 +0,0 @@
-import { type TemporalMemo } from '@domain/끄적이는/types';
-
-import WriteHistoryCard from '../../Card/History';
-import * as styles from './style.css';
-
-interface ColumnProps {
- list: TemporalMemo[] | undefined;
- editModeCardId: number | null;
- resetEditModeCardId: VoidFunction;
- onEditClick: (id: number) => void;
-}
-
-const Column = ({
- list,
- editModeCardId,
- resetEditModeCardId,
- onEditClick,
-}: ColumnProps) => {
- if (!list) {
- return null;
- }
-
- return (
-
- {list.map((el) => (
- onEditClick(el.id)}
- onEditCompleteClick={resetEditModeCardId}
- />
- ))}
-
- );
-};
-
-export default Column;
diff --git "a/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/Column/style.css.ts" "b/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/Column/style.css.ts"
deleted file mode 100644
index f1397b7e..00000000
--- "a/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/Column/style.css.ts"
+++ /dev/null
@@ -1,8 +0,0 @@
-import { style } from '@vanilla-extract/css';
-
-export const container = style({
- display: 'flex',
- flexDirection: 'column',
- gap: '16px',
- flex: '1',
-});
diff --git "a/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/index.css.ts" "b/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/index.css.ts"
index 8b2ca7e6..baf8464d 100644
--- "a/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/index.css.ts"
+++ "b/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/index.css.ts"
@@ -34,8 +34,3 @@ export const dateLabelText = style({
lineHeight: '24px',
letterSpacing: '-0.2px',
});
-
-export const contentWrapper = style({
- display: 'flex',
- gap: '16px',
-});
diff --git "a/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/index.tsx" "b/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/index.tsx"
index 5aad787e..2983bafd 100644
--- "a/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/index.tsx"
+++ "b/src/domain/\353\201\204\354\240\201\354\235\264\353\212\224/components/History/index.tsx"
@@ -3,36 +3,23 @@ import dayjs from 'dayjs';
import 'dayjs/locale/ko';
+import { type Folder } from '@api/memoFolder/types';
import Icon from '@components/Icon';
+import Responsive from '@components/Responsive';
-import { type TemporalMemo, type TemporalMemoHistory } from '../../types';
-import Column from './Column';
+import { type TemporalMemoHistory } from '../../types';
+import WriteHistoryCard from '../Card/History';
import * as styles from './index.css';
interface TemporalMemoHistoryTableProps {
data: TemporalMemoHistory[];
+ memoFolders: Folder[];
}
-const parser = (arr: TemporalMemo[]): TemporalMemo[][] => {
- let queue1: TemporalMemo[] = [];
- let queue2: TemporalMemo[] = [];
- let queue3: TemporalMemo[] = [];
-
- arr.forEach((history, i) => {
- const extra = i % 3;
- if (extra === 0) {
- queue1.push(history);
- } else if (extra === 1) {
- queue2.push(history);
- } else {
- queue3.push(history);
- }
- });
-
- return [queue1, queue2, queue3];
-};
-
-const TemporalMemoHistoryTable = ({ data }: TemporalMemoHistoryTableProps) => {
+const TemporalMemoHistoryTable = ({
+ data,
+ memoFolders,
+}: TemporalMemoHistoryTableProps) => {
const [editModeCardId, setEditModeCardId] = useState
(null);
return (
@@ -50,22 +37,18 @@ const TemporalMemoHistoryTable = ({ data }: TemporalMemoHistoryTableProps) => {
-
-