I'm wondering about the difference between dynamic import (next.js feature) and await import.
I couldn't find an explanation about the difference online.
I know that you can use dynamic import only to import React Components and not libraries.
But why should I use dynamic import and not just await import ?
thanks