I apologize if I'm missing something obvious here. Don't taze me, bro.
I need to set up a playground to demo a controlled completely-parent-component. Without state and updates being triggered from a parent, the component will not be interactive at all.
Can anybody point me in the right direction to make this work?
Well, I was successful in getting this to work by wrapping the actual demo JSX in a <Component> from react-component-component.

I suppose, alternatively, since the implementation details of the moving parts above the actual demo'd component don't matter so much, so creating a <DemoStateContainer> kind of component in a separate file and importing it for use in the demo would work just fine, hide the implementation details, and allow the demo to be interactive.
Most helpful comment
Well, I was successful in getting this to work by wrapping the actual demo JSX in a
<Component>fromreact-component-component.I suppose, alternatively, since the implementation details of the moving parts above the actual demo'd component don't matter so much, so creating a
<DemoStateContainer>kind of component in a separate file and importing it for use in the demo would work just fine, hide the implementation details, and allow the demo to be interactive.