{"id":55432,"date":"2022-08-26T11:35:25","date_gmt":"2022-08-26T06:05:25","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=55432"},"modified":"2022-09-13T11:37:43","modified_gmt":"2022-09-13T06:07:43","slug":"introduction-to-redux-toolkit","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/","title":{"rendered":"Introduction To Redux Toolkit"},"content":{"rendered":"<p><b>What is Redux ToolKit?<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Redux Toolkit (also known as &#8220;RTK&#8221; for short) is the recommended approach for writing the Redux logic. The <\/span><i><span style=\"font-weight: 400;\">@reduxjs\/toolkit<\/span><\/i><span style=\"font-weight: 400;\"> package wraps around the core redux package, and it contains API methods and common dependencies that are essential for building a Redux app.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">The Redux Toolkit package is intended to be the standard way to write Redux logic<\/span><\/p>\n<p><span style=\"font-weight: 400;\">RTK follows the ducks pattern and combines reducers, actions, and constants in one file called a slice. Each slice will provide an initial state and a reducer function for an object in the store<\/span><\/p>\n<p><em>Redux Toolkit comes pre-bundled with below features:<\/em><\/p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">immer.js : a library\/tool to handle immutability in stores.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">redux : For state management<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Redux-thunk : For async calls<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">reselect :\u00a0 For selecting a slice out of global store<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">automatic support for Redux Dev-tools Extension<\/span><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p><b>Installation:<\/b><\/p>\n<p><span style=\"font-weight: 400;\"># NPM<\/span><\/p>\n<p><span style=\"font-weight: 400;\">npm install @reduxjs\/toolkit<\/span><\/p>\n<p><span style=\"font-weight: 400;\"># Yarn<\/span><\/p>\n<p><span style=\"font-weight: 400;\">yarn add @reduxjs\/toolkit<\/span><\/p>\n<p>&nbsp;<\/p>\n<p><b>Reason for using Redux toolkit:<\/b><b><br \/>\n<\/b><\/p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">A lot lesser boilerplate code is required compared to Redux.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">No need to set up thunk manually as redux-toolkit comes with out of box <\/span><i><span style=\"font-weight: 400;\">createAsyncThunk<\/span><\/i><span style=\"font-weight: 400;\"> which can perform async operations.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Mutability might be considered an advantage or disadvantage, but if you&#8217;re not too used to writing with spread operators, you might love this feature as well. Do straight assignments and let the redux toolkit take care of mutability under the hoods.<\/span><\/li>\n<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">current<\/span><\/i><span style=\"font-weight: 400;\"> can be used to log your state anywhere in case you want to debug and understand where things are going wrong.<\/span><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p><span style=\"font-weight: 400;\">An example of what a slice looks like:<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-55431 size-full\" src=\"\/blog\/wp-ttn-blog\/uploads\/2022\/08\/Screenshot-2022-08-26-at-3.00.34-PM.png\" alt=\"Redux Toolkit Slice in Action\" width=\"1250\" height=\"904\" srcset=\"https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2022\/08\/Screenshot-2022-08-26-at-3.00.34-PM.png 1250w, https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2022\/08\/Screenshot-2022-08-26-at-3.00.34-PM-300x217.png 300w, https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2022\/08\/Screenshot-2022-08-26-at-3.00.34-PM-1024x741.png 1024w, https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2022\/08\/Screenshot-2022-08-26-at-3.00.34-PM-768x555.png 768w, https:\/\/tothenewco.pro\/blog\/wp-content\/uploads\/2022\/08\/Screenshot-2022-08-26-at-3.00.34-PM-624x451.png 624w\" sizes=\"auto, (max-width: 1250px) 100vw, 1250px\" \/><\/p>\n<p><span style=\"font-weight: 400;\">As it is visible we have the reducer, and actions all in one place. One interesting thing to note is that we are directly updating the state. <\/span><span style=\"font-weight: 400;\">You might think that is it not the redux best practice to not mutate the state. <\/span><span style=\"font-weight: 400;\">Well, the answer is yes but you do not need to do that yourself. Redux Toolkit contains a library named immer.js which handles it for you internally.<\/span><\/p>\n<div class=\"ap-custom-wrapper\"><\/div><!--ap-custom-wrapper-->","protected":false},"excerpt":{"rendered":"<p>What is Redux ToolKit? Redux Toolkit (also known as &#8220;RTK&#8221; for short) is the recommended approach for writing the Redux logic. The @reduxjs\/toolkit package wraps around the core redux package, and it contains API methods and common dependencies that are essential for building a Redux app. The Redux Toolkit package is intended to be the [&hellip;]<\/p>\n","protected":false},"author":1475,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":27,"footnotes":""},"categories":[1772,3038],"tags":[5012],"class_list":["post-55432","post","type-post","status-publish","format-standard","hentry","category-mobility","category-react-js","tag-redux-toolkit"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"What is Redux ToolKit? Redux Toolkit (also known as &quot;RTK&quot; for short) is the recommended approach for writing the Redux logic. The @reduxjs\/toolkit package wraps around the core redux package, and it contains API methods and common dependencies that are essential for building a Redux app. The Redux Toolkit package is intended to be the\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Gaurav Rawat\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Introduction To Redux Toolkit | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"What is Redux ToolKit? Redux Toolkit (also known as &quot;RTK&quot; for short) is the recommended approach for writing the Redux logic. The @reduxjs\/toolkit package wraps around the core redux package, and it contains API methods and common dependencies that are essential for building a Redux app. The Redux Toolkit package is intended to be the\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Introduction To Redux Toolkit | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"What is Redux ToolKit? Redux Toolkit (also known as &quot;RTK&quot; for short) is the recommended approach for writing the Redux logic. The @reduxjs\/toolkit package wraps around the core redux package, and it contains API methods and common dependencies that are essential for building a Redux app. The Redux Toolkit package is intended to be the\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/#article\",\"name\":\"Introduction To Redux Toolkit | TO THE NEW Blog\",\"headline\":\"Introduction To Redux Toolkit\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gaurav-rawat\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2022\\\/08\\\/Screenshot-2022-08-26-at-3.00.34-PM.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/#articleImage\"},\"datePublished\":\"2022-08-26T11:35:25+05:30\",\"dateModified\":\"2022-09-13T11:37:43+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/#webpage\"},\"articleSection\":\"Mobility, React.js, Redux-ToolKit\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/mobility\\\/#listItem\",\"name\":\"Mobility\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/mobility\\\/#listItem\",\"position\":2,\"name\":\"Mobility\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/mobility\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/#listItem\",\"name\":\"Introduction To Redux Toolkit\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/#listItem\",\"position\":3,\"name\":\"Introduction To Redux Toolkit\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/mobility\\\/#listItem\",\"name\":\"Mobility\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gaurav-rawat\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gaurav-rawat\\\/\",\"name\":\"Gaurav Rawat\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/fa0b607b-3267-44a0-8117-c949c868d44b_3633-Gaurav-Rawat-PROFILEPICTURE.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Gaurav Rawat\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/\",\"name\":\"Introduction To Redux Toolkit | TO THE NEW Blog\",\"description\":\"What is Redux ToolKit? Redux Toolkit (also known as \\\"RTK\\\" for short) is the recommended approach for writing the Redux logic. The @reduxjs\\\/toolkit package wraps around the core redux package, and it contains API methods and common dependencies that are essential for building a Redux app. The Redux Toolkit package is intended to be the\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/introduction-to-redux-toolkit\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gaurav-rawat\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gaurav-rawat\\\/#author\"},\"datePublished\":\"2022-08-26T11:35:25+05:30\",\"dateModified\":\"2022-09-13T11:37:43+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Introduction To Redux Toolkit | TO THE NEW Blog","description":"What is Redux ToolKit? Redux Toolkit (also known as \"RTK\" for short) is the recommended approach for writing the Redux logic. The @reduxjs\/toolkit package wraps around the core redux package, and it contains API methods and common dependencies that are essential for building a Redux app. The Redux Toolkit package is intended to be the","canonical_url":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/#article","name":"Introduction To Redux Toolkit | TO THE NEW Blog","headline":"Introduction To Redux Toolkit","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/gaurav-rawat\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2022\/08\/Screenshot-2022-08-26-at-3.00.34-PM.png","@id":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/#articleImage"},"datePublished":"2022-08-26T11:35:25+05:30","dateModified":"2022-09-13T11:37:43+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/#webpage"},"articleSection":"Mobility, React.js, Redux-ToolKit"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/mobility\/#listItem","name":"Mobility"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/mobility\/#listItem","position":2,"name":"Mobility","item":"https:\/\/tothenewco.pro\/blog\/category\/mobility\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/#listItem","name":"Introduction To Redux Toolkit"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/#listItem","position":3,"name":"Introduction To Redux Toolkit","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/mobility\/#listItem","name":"Mobility"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/gaurav-rawat\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/gaurav-rawat\/","name":"Gaurav Rawat","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/fa0b607b-3267-44a0-8117-c949c868d44b_3633-Gaurav-Rawat-PROFILEPICTURE.jpeg","width":96,"height":96,"caption":"Gaurav Rawat"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/","name":"Introduction To Redux Toolkit | TO THE NEW Blog","description":"What is Redux ToolKit? Redux Toolkit (also known as \"RTK\" for short) is the recommended approach for writing the Redux logic. The @reduxjs\/toolkit package wraps around the core redux package, and it contains API methods and common dependencies that are essential for building a Redux app. The Redux Toolkit package is intended to be the","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/gaurav-rawat\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/gaurav-rawat\/#author"},"datePublished":"2022-08-26T11:35:25+05:30","dateModified":"2022-09-13T11:37:43+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Introduction To Redux Toolkit | TO THE NEW Blog","og:description":"What is Redux ToolKit? Redux Toolkit (also known as &quot;RTK&quot; for short) is the recommended approach for writing the Redux logic. The @reduxjs\/toolkit package wraps around the core redux package, and it contains API methods and common dependencies that are essential for building a Redux app. The Redux Toolkit package is intended to be the","og:url":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Introduction To Redux Toolkit | TO THE NEW Blog","twitter:description":"What is Redux ToolKit? Redux Toolkit (also known as &quot;RTK&quot; for short) is the recommended approach for writing the Redux logic. The @reduxjs\/toolkit package wraps around the core redux package, and it contains API methods and common dependencies that are essential for building a Redux app. The Redux Toolkit package is intended to be the","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"55432","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-65e064b61091f","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"created":"2022-09-05 05:22:11","updated":"2024-02-29 11:04:22","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/mobility\/\" title=\"Mobility\">Mobility<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tIntroduction To Redux Toolkit\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Mobility","link":"https:\/\/tothenewco.pro\/blog\/category\/mobility\/"},{"label":"Introduction To Redux Toolkit","link":"https:\/\/tothenewco.pro\/blog\/introduction-to-redux-toolkit\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/55432","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/1475"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=55432"}],"version-history":[{"count":3,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/55432\/revisions"}],"predecessor-version":[{"id":55463,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/55432\/revisions\/55463"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=55432"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=55432"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=55432"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}