import * as React from "react"; import { BubblesOverlayEditorStyle } from "./bubbles-overlay-editor-style.js"; interface Props { readonly bubbles: readonly string[]; } const BubblesOverlayEditor: React.FunctionComponent = p => { const { bubbles } = p; return ( {bubbles.map((b, i) => (
{b}
))}