I am trying to warp my dynamic route with reduxRedux provider but it's telling me that my component should be warp with reduxRedux provider which I already did. I am using nextjsNext.js 13.5
myMy layout.tsx for dynamic route:
blog->
[slug]->
page.js
layout.tsx
export default function DynamicLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<Providers>
<>
{children}
</>
</Providers>
)
}