Commit 316b6e6d authored by Lee Soobeom's avatar Lee Soobeom
Browse files

post CRUD기능 구현 완성

parent 3da19360
......@@ -166,9 +166,8 @@ export function EditPost() {
onChange={titleChange}
placeholder="title"
className="w-full h-8"
>
{post.title}
</textarea>
defaultValue={post.title}
></textarea>
</div>
<div className="flex border-2">
<textarea
......@@ -176,9 +175,8 @@ export function EditPost() {
name="text"
placeholder="text"
className="w-full h-96"
>
{post.text}
</textarea>
defaultValue={post.text}
></textarea>
</div>
</form>
</div>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment