3f255ea201
Extract shared vision/document analysis logic into lib/ai (vision-client, document-analyzer, image preprocessing, validation helpers), simplifying invoice-analyzer, receipt-analyzer, and document classifier. Add migration 046 for journal entry reversal/correction link columns (reversed_by_id, reverses_id, correction_of_id) required by storno service. Update extension components and shared UI. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
578 B
TypeScript
16 lines
578 B
TypeScript
'use client'
|
|
|
|
import type { WorkspaceComponentProps } from '@/lib/extensions/workspace-registry'
|
|
import EmptyExtensionState from '@/components/extensions/shared/EmptyExtensionState'
|
|
import { Bell } from 'lucide-react'
|
|
|
|
export default function PushNotificationsWorkspace({ userId }: WorkspaceComponentProps) {
|
|
return (
|
|
<EmptyExtensionState
|
|
title="Push-notiser"
|
|
description="Konfigurera push-notiser under Inställningar. Notiser skickas automatiskt vid viktiga händelser."
|
|
icon={<Bell className="h-12 w-12 text-muted-foreground/40 mb-4" />}
|
|
/>
|
|
)
|
|
}
|