props란?
컴포넌트를 빌드할 때, 컴포넌트를 생성하는 함수의 매개 변수로 전달이 가능한 기능
아래의 코드는 input tag의 상태를 useState로 관리하여 그 값을 Btn 컴포넌트 props에 넘겨주는 코드 입니다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--react cdn-->
<script crossorigin src="https://unpkg.com/react@17/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"></script>
<!--babel cdn-->
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<title>Document</title>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
//props를 매개변수로 받는 Btn
function Btn(props) {
return(
//props.name을 출력
<button>{props.name}</button>
)
}
function App () {
//useState
const [value,setValue] = React.useState("PINO")
return(
<div>
<h1>Fuction props 활용</h1>
<br />
<input type="text" onChange = {(e) => setValue(e.target.value)}/>
<br />
<Btn name = {value}/>
</div>
)
}
//ReactDom을 이용하여, root Div에 App Render
ReactDOM.render(
<App />, document.getElementById("root")
)
</script>
</body>
</html>
props에 넘길 수 있는 값
props에는 일반적으로 데이터를 넘기지만, 함수 등 다양한 값을 넘길 수 있다.
const Test = ({name, click}) => {
return(
<button onClick={click}>{name}</button>
)
}
const App = () => {
const onClick = () => {
window.alert("Click Success")
}
return(
<Test name = "PINO" click = {onClick} />
)
}
'F.E > React' 카테고리의 다른 글
[React] useEffect 사용 방법 (0) | 2022.05.08 |
---|---|
[React] 컴포넌트의 타입 관리, prop-types (0) | 2022.05.05 |
[React] 함수로 props 사용하여 소문자 혹은 대문자로 바꾸기 (0) | 2022.05.05 |
[React] Super Converter (0) | 2022.05.05 |
[React] Minutes to Hours And Hours to Minutes (0) | 2022.05.04 |