Skip to content

seo: fix external 4XXs #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion questions/how-do-you-debug-react-applications/en-US.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@ function MyComponent() {
- [React Developer Tools](https://react.dev/learn/react-developer-tools)
- [Error boundaries in React](https://react.dev/reference/react/Component#catching-rendering-errors-with-an-error-boundary)
- [Using the Chrome DevTools](https://developers.google.com/web/tools/chrome-devtools)
- [Debugging JavaScript](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/Debugging)
- [JavaScript debugging and error handling](https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Scripting/Debugging_JavaScript)
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ In this example, `withExtraProps` is an HOC that adds an `extraProp` to `MyCompo
## Further reading

- [Understanding higher order components in React](https://medium.com/@franleplant/react-higher-order-components-in-depth-cf9032ee6c3e)
- [HOCs vs Render Props vs Hooks](https://blog.logrocket.com/hooks-vs-render-props-vs-hocs/)
- [HOCs vs Render Props vs Hooks](https://gist.github.com/bradwestfall/4fa683c8f4fcd781a38a8d623bec20e7)
2 changes: 0 additions & 2 deletions questions/what-are-react-fragments-used-for/en-US.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,3 @@ return (
## Further reading

- [React Fragments - Official Documentation](https://react.dev/reference/react/Fragment)
- [React Fragments - A Complete Guide](https://www.freecodecamp.org/news/react-fragments-complete-guide/)
- [When to use React Fragments](https://blog.logrocket.com/when-to-use-react-fragments/)
3 changes: 1 addition & 2 deletions questions/what-are-react-portals-used-for/en-US.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,4 @@ ReactDOM.createPortal(child, container);
## Further reading

- [React createPortal documentation](https://react.dev/reference/react-dom/createPortal)
- [Building a modal with React Portals](https://blog.logrocket.com/building-a-modal-with-react-portals/)
- [Using React Portals for better accessibility](https://www.smashingmagazine.com/2020/03/react-portals-accessibility/)
- [Building a modal in React with React Portals](https://blog.logrocket.com/build-modal-with-react-portals/)
1 change: 0 additions & 1 deletion questions/what-is-jsx-and-how-does-it-work/en-US.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,3 @@ By default, React DOM escapes any values embedded in JSX before rendering them.

- [React JSX documentation](https://react.dev/learn/writing-markup-with-jsx)
- [Babel](https://babeljs.io/)
- [MDN Web Docs on JSX](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/JSX)
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ In this example, `react-query` is used to fetch data, and `Suspense` provides a
- [React Suspense documentation](https://react.dev/reference/react/Suspense)
- [React.lazy documentation](https://react.dev/reference/react/lazy)
- [React Query documentation](https://react-query.tanstack.com/)
- [Relay documentation](https://relay.dev/docs/en/experimental/api-reference#suspense)
- [Relay documentation](https://relay.dev/docs/next/guides/relay-resolvers/suspense/)
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,3 @@ export default Counter;

- [React documentation on `useReducer`](https://react.dev/reference/react/useReducer)
- [Using the `useReducer` hook](https://react.dev/learn/scaling-up-with-reducer-and-context)
- [A complete guide to `useReducer`](https://www.smashingmagazine.com/2020/06/redux-patterns-use-reducer-react/)
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,3 @@ In this example, `prevCountRef` is used to keep a reference to the previous valu

- [React documentation on `useRef`](https://react.dev/reference/react/useRef)
- [Using the `useRef` hook](https://react.dev/learn/manipulating-the-dom-with-refs)
- [Common use cases for `useRef`](https://blog.logrocket.com/how-to-use-react-useref-hook/)