import React from "react"; export default function Modal({ isOpen, toggle = () => {}, children, title = ''}) { return (

{title}

{children}
) }