Open
Description
What if you could load React components that were registered as "plugins" using vdom
...
{
"tagName": "MyCoolPlugin",
"attributes": {
"data-stuff-my-plugin-uses": "something-super-cool"
},
}
Assuming you had some sort of global plugin storage mechanism it seems like it would be relatively trivial to identify whether or not the tagName
was novel or not before grabbing the appropriate plugin and dynamically mounting it.
The part I don't know anything about is what that "global plugin storage" would look like, or how users would go about registering their plugin with nteract
.
Activity