feat(web): add knowledge entry editor page (KNOW-006)

This commit is contained in:
Jason Woltje
2026-01-29 17:05:48 -06:00
parent 5291fece26
commit 25947cee52
8 changed files with 573 additions and 28 deletions

View File

@@ -10,7 +10,7 @@ interface EntryEditorProps {
/**
* EntryEditor - Markdown editor with live preview
*/
export function EntryEditor({ content, onChange }: EntryEditorProps): JSX.Element {
export function EntryEditor({ content, onChange }: EntryEditorProps) {
const [showPreview, setShowPreview] = useState(false);
return (