From b45112c4002977ffd037f268315d10ead8d4d201 Mon Sep 17 00:00:00 2001 From: gominzip Date: Tue, 27 Aug 2024 16:31:03 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EB=82=A0=EC=A7=9C=20=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=20=ED=95=84=EB=93=9C=20=EC=97=B0=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/tales/readTale/ReadTale.tsx | 2 +- src/type/createTale.d.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/tales/readTale/ReadTale.tsx b/src/components/tales/readTale/ReadTale.tsx index dda021d..c0344d3 100644 --- a/src/components/tales/readTale/ReadTale.tsx +++ b/src/components/tales/readTale/ReadTale.tsx @@ -64,7 +64,7 @@ const ReadTale = () => { - 내가 동화를 만든 날 | {response.createdAt} + 내가 동화를 만든 날 | {data.createdAt} 제목: {data.title} diff --git a/src/type/createTale.d.ts b/src/type/createTale.d.ts index b3f4f30..3793e31 100644 --- a/src/type/createTale.d.ts +++ b/src/type/createTale.d.ts @@ -10,4 +10,5 @@ export interface ResponseTaleData { taleId: number; title: string; story: string; + createdAt: string; }