1. Use meta tags in any child components
That’s right. You can now use meta tags in any component deep down in your components tree. That makes sense because the component and holds the meta information can be so deeper than the head tag. That’s why react now natively supports using meta tags in any component. Here’s a code example:
React will be able to detect any meta tags from any components and inject them to head making your life a bit less complicated!
2. Use ref as a prop
You heard it right. No more forwardRef! We can now directly pass ref in a component.
to be continued…