Hello.js 336 Bytes
Newer Older
Soo Hyun Kim's avatar
Soo Hyun Kim committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React from 'react'

function Hello(props) {
    console.log(props)
    return (
        <>
            <h1>Hello</h1>
            <div>
              안녕하세요. {props.name}
            </div>
            <input/>
        </>
    )
}

export default Hello


// import React from 'react'

// function Hello(props) {

// }