Hey there,
Is there a way to call "locally-scoped" actions from an outside component.
Say I have a @Local wrapped component
And I create it in another component:
<VisualizerPlusButtons>
<DNAVisualizer identity='visualizer1'/>
<button onClick={()={ /* call a visualizer1 action here*/ }}>
<DNAVisualizer identity='visualizer2'/>
<button onClick={()={ /* call a visualizer2 action here*/ }}>
</VisualizerPlusButton>
Is it possible to do this currently?
Thanks,
Thomas