posting.tsx 1017 Bytes
Newer Older
Kim, MinGyu's avatar
Kim, MinGyu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import React from "react";


export default function Posting() {
    return(
        <div className="flex flex-col border-3">
            <form className="w-full items-center" >
                <div className="flex flex-row relative">
                    <p className="basis-4/12 place-self-center">Id</p>
                    <p className="basis-8/12 invisible">empty</p>
                    
                    <button data-dropdown-toggle="dropdownId"className="basis-1/12">Theme</button>
                    <p className="basis-1/12">city</p>
                    <button className="basis-1/12 ">글쓰기</button>
                    
                </div>
                <div className="flex border-4">
                    <textarea placeholder="title" className="w-full h-8"></textarea>
                </div>
                <div className="flex border-2">
                    <textarea placeholder="body" className="w-full h-96"></textarea>
                </div>
            </form>
        </div>
    );
}