/** * ErrorPopup — shows the full error message in a floating panel above * the journal input area. Toggled by clicking the truncated error text. */ import { Component, Show } from "solid-js"; interface ErrorPopupProps { message: string | null; show: boolean; onClose: () => void; } export const ErrorPopup: Component = (props) => { return (

{props.message}

); };