import { h } from 'preact'; import Button from './Button'; import Heading from './Heading'; import Dialog from './Dialog'; export default function Prompt({ actions = [], title, text }) { return (
{title}

{text}

{actions.map(({ color, text, onClick, ...props }, i) => ( ))}
); }