react-hyperspace
v0.1.0
Published
Declarative data mapping through react tree
Downloads
1
Maintainers
Readme
react-hyperspace
Declarative data mapping through react tree
Read the Documentation
Synopsis
const Header = () => (
Your ballance: <IndicatorContainer/> USD
)
const Content = () => (
<IndicatorAgent balance=1000 />
)
<App>
<Header />
<Content />
</App>