Last active
March 21, 2019 13:45
-
-
Save bradfrost/dce1fe99ee66adbe858a8b1643f223c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const DynamicComponent = React.lazy(() => | |
import(`path/to/${reactComponentName}`) | |
); | |
return ( | |
//This works, but now how to I crawl in and grab its properties and PropTypes? | |
<Suspense fallback={<div>Loading...</div>}> | |
<DynamicComponent title="Lazy loaded component" /> | |
</Suspense> | |
) |
Would this work?
https://codesandbox.io/s/o5wxz1wv29?fontsize=14
import()
returns a Promise that will resolve the module; you could dive in there?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@remy just updated the gist as I'm using the
<Suspense>
feature. I guess I'm looking for something like "when component has successfully loaded, do stuff like grab its PropTypes and loop through them"