StackView component for react
npm install react-stack-viewimportReact,{Component}from'react';importStackViewfrom'react-stack-view';classMyComponentextendsComponent{add(){this.refs.stack.push(<div></div>);}remove(){this.refs.stack.pop();}replace(){this.refs.stack.replace([<div></div>]);}render(){return(<StackViewref="stack">
[optional default content]
</StackView>);}}