not-found.js not accepting props
Answered
Alaska pollock posted this in #help-forum
Alaska pollockOP
not-found.js components do not accept any props. How are we supposed to translate it to other languages if it doesn't accept any props?
Answered by DirtyCajunRice | AppDir
the simplest way - if path - is to make not-found a client component, and do useParams()
6 Replies
is your language set in headers, or in path only
Alaska pollockOP
i'm using nextjs Internationalization, so dynamic routes
the simplest way - if path - is to make not-found a client component, and do useParams()
Answer
if you want it to be a server component, you need to use headers() get the path from headers, and parse the path yourself
either way gets you what you need.
Alaska pollockOP
understood, preciate the help ðŸ¤