post.db.ts 452 Bytes
Newer Older
Lee Soobeom's avatar
Lee Soobeom 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
27
28
29
30
31
32
33
34
35
36
37
38
export const checkTitleNull = async (
    title : string,

) => {

}

export const checkBodyNull = async (
    body : string,

) => {

}

export const getSubmitDate = async (
    date : string,

) => {

}

export const selectTheme = async (
    theme : string,
)  => {
    let user;
    if( theme != "테마" ) {
        
    }
}

export const selectCity = async (
    city : string,
) => {
    let user;
    if ( city != "도시" ) {
        
    }
}