import { Database } from "types"; import Msg from "components/Msg.tsx"; import { conv_style, msg_style, page_style } from "style"; import { Head } from "$fresh/runtime.ts"; import WithStyleSheet from "components/WithStyleSheet.tsx"; import Meta from "components/Meta.tsx"; export default function Conv({ conv, db, children, }: { conv: string; db: Database; children?: any; }) { const conv_ = db.conversations[conv]; return ( <> {conv_.name}

{conv_.name}

{conv_.description}

{conv_.messages.map(msg => ( ))}
{children}
); }