Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import Image from "./Image";
  2.  
  3. (function() {
  4. const components = {
  5. Image
  6. };
  7.  
  8. Object.values(components).forEach(component => {
  9. let newComponent = new component();
  10. newComponent.render();
  11. });
  12. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement