{"id":38944,"date":"2024-11-02T02:35:48","date_gmt":"2024-11-02T02:35:48","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=38944"},"modified":"2024-11-26T06:42:51","modified_gmt":"2024-11-26T06:42:51","slug":"react-%ec%bb%b4%ed%8f%ac%eb%84%8c%ed%8a%b8%ec%9d%98-%ec%a2%85%eb%a5%98-%ec%bb%b4%ed%8f%ac%eb%84%8c%ed%8a%b8%ec%9d%98-%ec%9e%ac%ec%82%ac%ec%9a%a9%ea%b3%bc-props","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/38944\/","title":{"rendered":"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props"},"content":{"rendered":"<article>\n<header>\n<p>React\ub294 JavaScript \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \ud6a8\uc728\uc801\uc774\uace0 \uc720\uc5f0\ud55c UI \uad6c\uc131\uc744 \uac00\ub2a5\ud558\uac8c \ud569\ub2c8\ub2e4. React\uc758 \ud575\uc2ec \uac1c\ub150 \uc911 \ud558\ub098\ub294 \ucef4\ud3ec\ub10c\ud2b8\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 React\uc758 \ucef4\ud3ec\ub10c\ud2b8 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8 \uc7ac\uc0ac\uc6a9\uc131, \ubc0f Props\uc758 \uac1c\ub150\uc744 \uc0c1\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<\/header>\n<section>\n<h2>1. React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958<\/h2>\n<h3>1.1 \ud568\uc218\ud615 \ucef4\ud3ec\ub10c\ud2b8<\/h3>\n<p>\ud568\uc218\ud615 \ucef4\ud3ec\ub10c\ud2b8\ub294 JavaScript \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc815\uc758\ub429\ub2c8\ub2e4. \uc774 \ucef4\ud3ec\ub10c\ud2b8\ub294 \ub370\uc774\ud130\ub97c props\ub85c \uc804\ub2ec\ubc1b\uc544 UI\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4. \ucd5c\uc2e0 React\uc5d0\uc11c\ub294 hooks\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ud0dc\ub97c \uad00\ub9ac\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: \ud568\uc218\ud615 \ucef4\ud3ec\ub10c\ud2b8<\/h4>\n<pre>\n            <code>\n                import React from 'react';\n\n                const Greeting = (props) =&gt; {\n                    return &lt;h1&gt;Hello, {props.name}!&lt;\/h1&gt;;\n                };\n\n                export default Greeting;\n            <\/code>\n        <\/pre>\n<h3>1.2 \ud074\ub798\uc2a4\ud615 \ucef4\ud3ec\ub10c\ud2b8<\/h3>\n<p>\ud074\ub798\uc2a4\ud615 \ucef4\ud3ec\ub10c\ud2b8\ub294 React.Component\ub97c \ud655\uc7a5\ud55c JavaScript \ud074\ub798\uc2a4\uc785\ub2c8\ub2e4. \uc774 \ucef4\ud3ec\ub10c\ud2b8\ub294 \uc0c1\ud0dc \uad00\ub9ac\uc640 \uc0dd\uba85\uc8fc\uae30 \uba54\uc11c\ub4dc\ub97c \uc9c0\uc6d0\ud569\ub2c8\ub2e4.<\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: \ud074\ub798\uc2a4\ud615 \ucef4\ud3ec\ub10c\ud2b8<\/h4>\n<pre>\n            <code>\n                import React, { Component } from 'react';\n\n                class Greeting extends Component {\n                    render() {\n                        return &lt;h1&gt;Hello, {this.props.name}!&lt;\/h1&gt;;\n                    }\n                }\n\n                export default Greeting;\n            <\/code>\n        <\/pre>\n<\/section>\n<section>\n<h2>2. \ucef4\ud3ec\ub10c\ud2b8 \uc7ac\uc0ac\uc6a9\uc131<\/h2>\n<p>\ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uc131\uc740 React\uc758 \uac15\ub825\ud55c \ud2b9\uc9d5 \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. \uc7ac\uc0ac\uc6a9 \uac00\ub2a5\ud55c \ucef4\ud3ec\ub10c\ud2b8\ub97c \ub9cc\ub4e4\uba74 \ucf54\ub4dc\uc758 \uc720\uc9c0\ubcf4\uc218\uc131\uacfc \uac00\ub3c5\uc131\uc744 \ub192\uc77c \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574\uc11c\ub294 \ucef4\ud3ec\ub10c\ud2b8\uac00 \ud2b9\uc815\ud55c \uae30\ub2a5\uc744 \uc218\ud589\ud558\ub3c4\ub85d \uba85\ud655\ud788 \uc815\uc758\ud558\uace0, props\ub97c \ud1b5\ud574 \ud544\uc694\ud55c \ub370\uc774\ud130\ub97c \uc804\ub2ec\ud574\uc57c \ud569\ub2c8\ub2e4.<\/p>\n<h3>2.1 \uc608\uc81c: \uc7ac\uc0ac\uc6a9 \uac00\ub2a5\ud55c \ucef4\ud3ec\ub10c\ud2b8 \ub9cc\ub4e4\uae30<\/h3>\n<p>\uc544\ub798\uc758 \uc608\uc81c\uc5d0\uc11c\ub294 \ubc84\ud2bc \ucef4\ud3ec\ub10c\ud2b8\ub97c \ub9cc\ub4e4\uace0 \uc774\ub97c \uc5ec\ub7ec \uacf3\uc5d0\uc11c \uc7ac\uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: \uc7ac\uc0ac\uc6a9 \uac00\ub2a5\ud55c \ubc84\ud2bc \ucef4\ud3ec\ub10c\ud2b8<\/h4>\n<pre>\n            <code>\n                import React from 'react';\n\n                const Button = ({ onClick, label }) =&gt; {\n                    return &lt;button onClick={onClick}&gt;{label}&lt;\/button&gt;;\n                };\n\n                export default Button;\n            <\/code>\n        <\/pre>\n<h4>\uc608\uc81c \ucf54\ub4dc: \ubc84\ud2bc \ucef4\ud3ec\ub10c\ud2b8 \uc7ac\uc0ac\uc6a9<\/h4>\n<pre>\n            <code>\n                import React from 'react';\n                import Button from '.\/Button';\n\n                const App = () =&gt; {\n                    const handleClick = () =&gt; alert('Button Clicked!');\n\n                    return (\n                        &lt;div&gt;\n                            &lt;Button onClick={handleClick} label=\"Click Me!\" \/&gt;\n                            &lt;Button onClick={handleClick} label=\"Another Button!\" \/&gt;\n                        &lt;\/div&gt;\n                    );\n                };\n\n                export default App;\n            <\/code>\n        <\/pre>\n<\/section>\n<section>\n<h2>3. Props\uc758 \uc774\ud574<\/h2>\n<p>Props(\uc18d\uc131)\ub294 \ucef4\ud3ec\ub10c\ud2b8\uc5d0 \ub370\uc774\ud130\ub97c \uc804\ub2ec\ud558\ub294 \ubc29\ubc95\uc785\ub2c8\ub2e4. props\ub294 \ubd80\ubaa8 \ucef4\ud3ec\ub10c\ud2b8\uc5d0\uc11c \uc790\uc2dd \ucef4\ud3ec\ub10c\ud2b8\ub85c \ub370\uc774\ud130\ub97c \uc804\uc1a1\ud558\ub294 \uc77c\uc885\uc758 \ub9e4\uac1c\ubcc0\uc218 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4. props\ub294 \uc77d\uae30 \uc804\uc6a9\uc774\uba70, \ucef4\ud3ec\ub10c\ud2b8 \ub0b4\ubd80\uc5d0\uc11c \ubcc0\uacbd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>3.1 props\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h3>\n<p>props\ub294 \ucef4\ud3ec\ub10c\ud2b8\uc758 HTML \ud0dc\uadf8\uc5d0 \uc9c1\uc811 \uc804\ub2ec\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c\uc758 \uc608\uc81c\uc5d0\uc11c\ub294 \ub2e4\uc591\ud55c \uc815\ubcf4\ub97c props\ub85c \uc804\ub2ec\ud558\ub294 \ubc29\uc2dd\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: Props \uc0ac\uc6a9 \uc608\uc2dc<\/h4>\n<pre>\n            <code>\n                import React from 'react';\n\n                const UserCard = ({ name, age }) =&gt; {\n                    return (\n                        &lt;div&gt;\n                            &lt;h2&gt;{name}&lt;\/h2&gt;\n                            &lt;p&gt;Age: {age}&lt;\/p&gt;\n                        &lt;\/div&gt;\n                    );\n                };\n\n                export default UserCard;\n            <\/code>\n        <\/pre>\n<h4>\uc608\uc81c \ucf54\ub4dc: UserCard \ucef4\ud3ec\ub10c\ud2b8 \uc0ac\uc6a9<\/h4>\n<pre>\n            <code>\n                import React from 'react';\n                import UserCard from '.\/UserCard';\n\n                const App = () =&gt; {\n                    return (\n                        &lt;div&gt;\n                            &lt;UserCard name=\"Alice\" age={25} \/&gt;\n                            &lt;UserCard name=\"Bob\" age={30} \/&gt;\n                        &lt;\/div&gt;\n                    );\n                };\n\n                export default App;\n            <\/code>\n        <\/pre>\n<\/section>\n<section>\n<h2>4. \uc8fc\uc758\ud560 \uc810<\/h2>\n<p>\ucef4\ud3ec\ub10c\ud2b8\ub97c \uc7ac\uc0ac\uc6a9\ud558\uace0 props\ub97c \uc0ac\uc6a9\ud558\ub294 \uacfc\uc815\uc5d0\uc11c \uc8fc\uc758\ud574\uc57c \ud560 \uba87 \uac00\uc9c0 \uc0ac\ud56d\uc774 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3>4.1 props\uc758 \ubd88\ubcc0\uc131<\/h3>\n<p>props\ub294 \ucef4\ud3ec\ub10c\ud2b8 \ub0b4\ubd80\uc5d0\uc11c \ubcc0\uacbd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc774\ub97c \uc900\uc218\ud558\uc5ec \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc608\uce21 \uac00\ub2a5\uc131\uc744 \uc720\uc9c0\ud574\uc57c \ud569\ub2c8\ub2e4.<\/p>\n<h3>4.2 PropTypes \uc0ac\uc6a9<\/h3>\n<p>PropTypes\ub97c \uc0ac\uc6a9\ud558\uc5ec props\uc758 \ud0c0\uc785\uc744 \uac80\uc0ac\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub294 \ucf54\ub4dc\uc5d0\uc11c \ubc1c\uc0dd\ud560 \uc218 \uc788\ub294 \ubc84\uadf8\ub97c \uc608\ubc29\ud558\ub294 \ub370 \uc720\uc6a9\ud569\ub2c8\ub2e4.<\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: PropTypes\ub97c \uc0ac\uc6a9\ud55c Props \ud0c0\uc785 \uac80\uc0ac<\/h4>\n<pre>\n            <code>\n                import React from 'react';\n                import PropTypes from 'prop-types';\n\n                const UserCard = ({ name, age }) =&gt; {\n                    return (\n                        &lt;div&gt;\n                            &lt;h2&gt;{name}&lt;\/h2&gt;\n                            &lt;p&gt;Age: {age}&lt;\/p&gt;\n                        &lt;\/div&gt;\n                    );\n                };\n\n                UserCard.propTypes = {\n                    name: PropTypes.string.isRequired,\n                    age: PropTypes.number.isRequired,\n                };\n\n                export default UserCard;\n            <\/code>\n        <\/pre>\n<\/section>\n<section>\n<h2>5. \uacb0\ub860<\/h2>\n<p>React\uc758 \ucef4\ud3ec\ub10c\ud2b8\ub294 UI\ub97c \ud6a8\uc728\uc801\uc73c\ub85c \uad6c\uc131\ud558\uace0 \uc7ac\uc0ac\uc6a9\uc131\uc744 \ub192\uc774\ub294 \ub370 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. \ud568\uc218\ud615 \ubc0f \ud074\ub798\uc2a4\ud615 \ucef4\ud3ec\ub10c\ud2b8\ub97c \uc774\ud574\ud558\uace0, props\ub97c \ud65c\uc6a9\ud558\uc5ec \ub370\uc774\ud130\ub97c \uc804\ub2ec\ud558\ub294 \uac83\uc774 \uc911\uc694\ud569\ub2c8\ub2e4. \ub610\ud55c, PropTypes\ub97c \uc0ac\uc6a9\ud558\uc5ec \ucf54\ub4dc\uc758 \uc548\uc815\uc131\uc744 \ub192\uc774\uace0, \uc7ac\uc0ac\uc6a9 \uac00\ub2a5\ud55c \ucef4\ud3ec\ub10c\ud2b8\ub97c \uc791\uc131\ud558\ub294 \uac83\uc774 React \uac1c\ubc1c\uc758 \ud575\uc2ec\uc785\ub2c8\ub2e4.<\/p>\n<p>\uc774 \uae00\uc744 \ud1b5\ud574 React\uc758 \ucef4\ud3ec\ub10c\ud2b8\uc640 props\uc5d0 \ub300\ud55c \uc774\ud574\ub97c \ub192\uc774\uace0, \uc2e4\uc804\uc5d0\uc11c \ud65c\uc6a9\ud560 \uc218 \uc788\ub294 \uae30\ud68c\ub97c \uc81c\uacf5\ud558\uace0\uc790 \ud558\uc600\uc2b5\ub2c8\ub2e4. React \uac1c\ubc1c\uc758 \uae30\ucd08\ub97c \ub2e4\uc9c0\uba70, \ub354 \ub098\uc544\uac00 \ubcf5\uc7a1\ud55c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\ub3c4 \uc27d\uac8c \uad6c\ucd95\ud560 \uc218 \uc788\ub294 \ub2a5\ub825\uc744 \uae30\ub974\uc2dc\uae38 \ubc14\ub78d\ub2c8\ub2e4.<\/p>\n<\/section>\n<\/article>\n","protected":false},"excerpt":{"rendered":"<p>React\ub294 JavaScript \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \ud6a8\uc728\uc801\uc774\uace0 \uc720\uc5f0\ud55c UI \uad6c\uc131\uc744 \uac00\ub2a5\ud558\uac8c \ud569\ub2c8\ub2e4. React\uc758 \ud575\uc2ec \uac1c\ub150 \uc911 \ud558\ub098\ub294 \ucef4\ud3ec\ub10c\ud2b8\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 React\uc758 \ucef4\ud3ec\ub10c\ud2b8 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8 \uc7ac\uc0ac\uc6a9\uc131, \ubc0f Props\uc758 \uac1c\ub150\uc744 \uc0c1\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958 1.1 \ud568\uc218\ud615 \ucef4\ud3ec\ub10c\ud2b8 \ud568\uc218\ud615 \ucef4\ud3ec\ub10c\ud2b8\ub294 JavaScript \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc815\uc758\ub429\ub2c8\ub2e4. \uc774 \ucef4\ud3ec\ub10c\ud2b8\ub294 \ub370\uc774\ud130\ub97c props\ub85c \uc804\ub2ec\ubc1b\uc544 UI\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4. \ucd5c\uc2e0 React\uc5d0\uc11c\ub294 hooks\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ud0dc\ub97c \uad00\ub9ac\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. &hellip; <a href=\"https:\/\/atmokpo.com\/w\/38944\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[191],"tags":[],"class_list":["post-38944","post","type-post","status-publish","format-standard","hentry","category-react"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/38944\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"React\ub294 JavaScript \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \ud6a8\uc728\uc801\uc774\uace0 \uc720\uc5f0\ud55c UI \uad6c\uc131\uc744 \uac00\ub2a5\ud558\uac8c \ud569\ub2c8\ub2e4. React\uc758 \ud575\uc2ec \uac1c\ub150 \uc911 \ud558\ub098\ub294 \ucef4\ud3ec\ub10c\ud2b8\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 React\uc758 \ucef4\ud3ec\ub10c\ud2b8 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8 \uc7ac\uc0ac\uc6a9\uc131, \ubc0f Props\uc758 \uac1c\ub150\uc744 \uc0c1\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958 1.1 \ud568\uc218\ud615 \ucef4\ud3ec\ub10c\ud2b8 \ud568\uc218\ud615 \ucef4\ud3ec\ub10c\ud2b8\ub294 JavaScript \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc815\uc758\ub429\ub2c8\ub2e4. \uc774 \ucef4\ud3ec\ub10c\ud2b8\ub294 \ub370\uc774\ud130\ub97c props\ub85c \uc804\ub2ec\ubc1b\uc544 UI\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4. \ucd5c\uc2e0 React\uc5d0\uc11c\ub294 hooks\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ud0dc\ub97c \uad00\ub9ac\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. &hellip; \ub354 \ubcf4\uae30 &quot;React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/38944\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-02T02:35:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:42:51+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/38944\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38944\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props\",\"datePublished\":\"2024-11-02T02:35:48+00:00\",\"dateModified\":\"2024-11-26T06:42:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38944\/\"},\"wordCount\":45,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"React\ud504\ub860\ud2b8\uc5d4\ub4dc\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/38944\/\",\"url\":\"https:\/\/atmokpo.com\/w\/38944\/\",\"name\":\"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-02T02:35:48+00:00\",\"dateModified\":\"2024-11-26T06:42:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/38944\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/38944\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/38944\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/38944\/","og_locale":"ko_KR","og_type":"article","og_title":"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"React\ub294 JavaScript \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \ud6a8\uc728\uc801\uc774\uace0 \uc720\uc5f0\ud55c UI \uad6c\uc131\uc744 \uac00\ub2a5\ud558\uac8c \ud569\ub2c8\ub2e4. React\uc758 \ud575\uc2ec \uac1c\ub150 \uc911 \ud558\ub098\ub294 \ucef4\ud3ec\ub10c\ud2b8\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 React\uc758 \ucef4\ud3ec\ub10c\ud2b8 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8 \uc7ac\uc0ac\uc6a9\uc131, \ubc0f Props\uc758 \uac1c\ub150\uc744 \uc0c1\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958 1.1 \ud568\uc218\ud615 \ucef4\ud3ec\ub10c\ud2b8 \ud568\uc218\ud615 \ucef4\ud3ec\ub10c\ud2b8\ub294 JavaScript \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc815\uc758\ub429\ub2c8\ub2e4. \uc774 \ucef4\ud3ec\ub10c\ud2b8\ub294 \ub370\uc774\ud130\ub97c props\ub85c \uc804\ub2ec\ubc1b\uc544 UI\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4. \ucd5c\uc2e0 React\uc5d0\uc11c\ub294 hooks\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc0c1\ud0dc\ub97c \uad00\ub9ac\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. &hellip; \ub354 \ubcf4\uae30 \"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props\"","og_url":"https:\/\/atmokpo.com\/w\/38944\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-02T02:35:48+00:00","article_modified_time":"2024-11-26T06:42:51+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/38944\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/38944\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props","datePublished":"2024-11-02T02:35:48+00:00","dateModified":"2024-11-26T06:42:51+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/38944\/"},"wordCount":45,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["React\ud504\ub860\ud2b8\uc5d4\ub4dc"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/38944\/","url":"https:\/\/atmokpo.com\/w\/38944\/","name":"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-02T02:35:48+00:00","dateModified":"2024-11-26T06:42:51+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/38944\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/38944\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/38944\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"React \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc885\ub958, \ucef4\ud3ec\ub10c\ud2b8\uc758 \uc7ac\uc0ac\uc6a9\uacfc props"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38944","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=38944"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38944\/revisions"}],"predecessor-version":[{"id":38945,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/38944\/revisions\/38945"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=38944"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=38944"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=38944"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}