{"id":369640,"date":"2023-03-01T12:00:04","date_gmt":"2023-03-01T12:00:04","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=369640"},"modified":"2023-04-10T06:28:51","modified_gmt":"2023-04-10T06:28:51","slug":"react-props","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/react-props\/","title":{"rendered":"What are props and how use in react components."},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Defination<\/h2>\n\n\n\n<p class=\"has-text-align-left\"><strong>Props basically just like properties that<\/strong> pass from one component to another component by using HTML attributes.It is an object which stores the value of attributes of a tag and work similar to the HTML attributes. It is similar to function arguments. Props are passed to the component in the same way as arguments passed in a function.<br>In react use the two types of component class and functional component.<\/p>\n\n\n\n<p class=\"has-text-align-left\">Before introducing the <a href=\"https:\/\/legacy.reactjs.org\/docs\/components-and-props.html\">functional components<\/a> react used only class components. In react 16.8 introduce the hooks features that allow you to use state without writing\u00a0<em>c<a href=\"https:\/\/legacy.reactjs.org\/docs\/components-and-props.html\">lass components<\/a><\/em>. Instead of the class component, we will use the functional component because it&#8217;s easy to use and easy to understand.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Uses<\/h2>\n\n\n\n<p class=\"has-text-align-left\">Component <strong>App.js<\/strong>&#8211;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">import React from 'react';\nimport TestComponent from '.\/TestComponent';\n\nfunction App() {\nreturn (\n&lt;div&gt;\n&lt;div className=\"container\"&gt;\n&lt;TestComponent name=\"Deepak\" \/&gt;\n&lt;\/div&gt;\n&lt;\/div&gt;\n);\n}<\/pre>\n\n\n\n<p> A property &#8216;name&#8217; like attribute in &#8216;TestComponent&#8217; just like this-<br><strong>&lt;TestComponent name=&#8221;Deepak&#8221; \/&gt;<\/strong><br>Here prop is &#8216;name&#8217; and now we can use this property in &#8220;TestComponent&#8221;.These props just return an object of properties and we use like &#8220;props.name&#8221; to access the name properties into the &#8220;TestComponent&#8221;<\/p>\n\n\n\n<p><strong>Use props in component<\/strong><\/p>\n\n\n\n<p><strong>TestComponent.js<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">import React  from \"react\";\n\nexport default function TestComponent(props) {\nreturn (\n&lt;div className=\"register-form\"&gt;\n&lt;p className=\"text-center\"&gt;My Name is { props.name}&lt;\/p&gt;\n&lt;\/div&gt;\n)\n}<\/pre>\n\n\n\n<p>Simply access the name &#8220;{props.name}&#8221; and the result be &#8220;My name is Deepak&#8221;<\/p>\n\n\n\n<p>We can pass multiple values in components using attributes like-<\/p>\n\n\n\n<p><strong>&lt;TestComponent name=&#8221;Rama&#8221; address=&#8221;Noida&#8221; \/&gt;<\/strong> and access same as props.property_name.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Output-<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"768\" height=\"59\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp\" alt=\"The front output of props example\" class=\"wp-image-376042\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output-300x23.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output-250x19.webp 250w\" sizes=\"(max-width: 768px) 100vw, 768px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Send state\/props to another component onClick event<\/h2>\n\n\n\n<p><strong>State:<\/strong> The state is used to change the component state from within. Changes to the state also trigger a UI update like onclick, onchange, and other events.<br>We store the state\/props into the parent component i.e in which component where we trigger the onClick event. Then to pass the state into another component, we simply pass it as a prop.<br><strong>App.js<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">import React  {useState} from 'react';\nimport TestComponent from '.\/TestComponent';\n\nfunction App() {\nconst [state, setstate] = useState({data:\"\"})\nconst changeState = () =&gt; {&nbsp;&nbsp;\nsetstate({data:`Hey! i am a software developer`});&nbsp;\n};\n\nreturn (\n&lt;div&gt;\n&lt;div className=\"container\"&gt;\n&lt;TestComponent data={state.data} \/&gt;\n&lt;button&nbsp; onClick={changeState} type=\"button\"&gt;\n&nbsp;Click me&nbsp;\n&lt;\/button&gt;\n&lt;\/div&gt;\n&lt;\/div&gt;\n);\n}\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Component <strong>TestComponent.js<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">import React from 'react';\n\nexport default function TestComponent(props)  {\nreturn(\n&lt;div className=\"main-cointainer\"&gt;\n&lt;h2&gt;TestComponent&lt;\/h2&gt;&nbsp;\n&lt;p&gt;{props.data} &lt;\/p&gt;\n&lt;\/div&gt;\n)\n}<\/pre>\n\n\n\n<p><strong>Conclusion-<\/strong><br>Props for &#8220;<strong>Properties<\/strong>.&#8221; They are&nbsp;<strong>read-only<\/strong>&nbsp;components. props are an object which stores the value of attributes of a tag and work similarly to the HTML attributes. It gives a way to pass data from one component to another components. It is similar to function arguments. Props are passed to the component in the same way as arguments passed in a function.<\/p>\n\n\n\n<p>For more details, you can follow the document. See the blog&nbsp;<a href=\"https:\/\/legacy.reactjs.org\/docs\/components-and-props.html\" target=\"_blank\" rel=\"noreferrer noopener\">click<\/a>&nbsp;here<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Defination Props basically just like properties that pass from one component to another component by using HTML attributes.It is an object which stores the value of attributes of a tag and work similar to the HTML attributes. It is similar to function arguments. Props are passed to the component in the same way as arguments <a href=\"https:\/\/webkul.com\/blog\/react-props\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":508,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-369640","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What are props and how use in react components. - Webkul Blog<\/title>\n<meta name=\"description\" content=\"what is props,use of prop,get prop in another component on click event,prop management in react, props arguments,use prop in component\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/react-props\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What are props and how use in react components. - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"what is props,use of prop,get prop in another component on click event,prop management in react, props arguments,use prop in component\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/react-props\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-01T12:00:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-10T06:28:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp\" \/>\n<meta name=\"author\" content=\"Gaurav Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gaurav Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/react-props\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/react-props\/\"},\"author\":{\"name\":\"Gaurav Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/9e346a792c1f4cf654b8f7a8ddea4f1c\"},\"headline\":\"What are props and how use in react components.\",\"datePublished\":\"2023-03-01T12:00:04+00:00\",\"dateModified\":\"2023-04-10T06:28:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/react-props\/\"},\"wordCount\":381,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/react-props\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/react-props\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/react-props\/\",\"url\":\"https:\/\/webkul.com\/blog\/react-props\/\",\"name\":\"What are props and how use in react components. - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/react-props\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/react-props\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp\",\"datePublished\":\"2023-03-01T12:00:04+00:00\",\"dateModified\":\"2023-04-10T06:28:51+00:00\",\"description\":\"what is props,use of prop,get prop in another component on click event,prop management in react, props arguments,use prop in component\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/react-props\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/react-props\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/react-props\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp\",\"width\":768,\"height\":59},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/react-props\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What are props and how use in react components.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/9e346a792c1f4cf654b8f7a8ddea4f1c\",\"name\":\"Gaurav Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2be9fca71131c8014ae06e60b978ec93431494ca0641e0eb802b5fcbdc0a9bcd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2be9fca71131c8014ae06e60b978ec93431494ca0641e0eb802b5fcbdc0a9bcd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Gaurav Singh\"},\"sameAs\":[\"http:\/\/webkul.com\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/gaurav-singh737\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What are props and how use in react components. - Webkul Blog","description":"what is props,use of prop,get prop in another component on click event,prop management in react, props arguments,use prop in component","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:\/\/webkul.com\/blog\/react-props\/","og_locale":"en_US","og_type":"article","og_title":"What are props and how use in react components. - Webkul Blog","og_description":"what is props,use of prop,get prop in another component on click event,prop management in react, props arguments,use prop in component","og_url":"https:\/\/webkul.com\/blog\/react-props\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-03-01T12:00:04+00:00","article_modified_time":"2023-04-10T06:28:51+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp","type":"","width":"","height":""}],"author":"Gaurav Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Gaurav Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/react-props\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/react-props\/"},"author":{"name":"Gaurav Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/9e346a792c1f4cf654b8f7a8ddea4f1c"},"headline":"What are props and how use in react components.","datePublished":"2023-03-01T12:00:04+00:00","dateModified":"2023-04-10T06:28:51+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/react-props\/"},"wordCount":381,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/react-props\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/react-props\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/react-props\/","url":"https:\/\/webkul.com\/blog\/react-props\/","name":"What are props and how use in react components. - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/react-props\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/react-props\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp","datePublished":"2023-03-01T12:00:04+00:00","dateModified":"2023-04-10T06:28:51+00:00","description":"what is props,use of prop,get prop in another component on click event,prop management in react, props arguments,use prop in component","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/react-props\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/react-props\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/react-props\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/04\/output.webp","width":768,"height":59},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/react-props\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What are props and how use in react components."}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/9e346a792c1f4cf654b8f7a8ddea4f1c","name":"Gaurav Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2be9fca71131c8014ae06e60b978ec93431494ca0641e0eb802b5fcbdc0a9bcd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2be9fca71131c8014ae06e60b978ec93431494ca0641e0eb802b5fcbdc0a9bcd?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Gaurav Singh"},"sameAs":["http:\/\/webkul.com"],"url":"https:\/\/webkul.com\/blog\/author\/gaurav-singh737\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/369640","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/508"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=369640"}],"version-history":[{"count":36,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/369640\/revisions"}],"predecessor-version":[{"id":376052,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/369640\/revisions\/376052"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=369640"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=369640"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=369640"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}