Craig Condon
Craig Condon
Some feedback loop for integrating with other systems
```javascript component TodoItem { render div { slot label } } component TodoList { render foreach items as item { TodoItem(label: item.label) } } ``` Alternatively: ```javascript component TodoList {...
If TD is feature-complete, then why not make into a framework?
Good exercise for figuring out a generic library. Examples: - ThreeJS Testing how to: - Add custom components - Generic sidebar controls - generic canvas controls
Something worth exploring, but I think it may be important to allow apps to be built end-to-end within Tandem - not to the degree of actually coding, but giving people...
I think there should be the ability to eject UIs to target libraries, like SASS, styled-components, emotion. This code could also be used to integrate with these other libraries. ####...