"use client"; import React from "react"; import type { KnowledgeEntryWithTags } from "@mosaic/shared"; interface EntryViewerProps { entry: KnowledgeEntryWithTags; } /** * EntryViewer - Displays rendered markdown content */ export function EntryViewer({ entry }: EntryViewerProps) { return (
{entry.contentHtml ? (
) : (
{entry.content}
)}
{entry.summary && (

Summary

{entry.summary}

)}
); }