"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.summary}