import * as React from "react" import { storiesOf } from "@storybook/react" import Stream from "." class Component extends React.Component { public state = { actions: [] } public render() { return (
actions {this.state.actions.map((action, idx) => (
{JSON.stringify(action)}
))} { this.setState({ actions: this.state.actions.concat(action) }) }} />
) } } storiesOf("Stream", module).add("Abcdef", () => )