Some checks failed
E2E / Playwright e2e (push) Has been cancelled
Move mail, compose, contacts, and accounts off mocks onto REST + WS. Add client, auth store, IDB-backed query cache, offline queue, and sync bar; hybrid Zustand for UI-only state. Settings still local until backend has preferences API.
24 lines
544 B
TypeScript
24 lines
544 B
TypeScript
"use client"
|
|
|
|
import {
|
|
CONTACTS_MUTED_TEXT,
|
|
CONTACTS_PAGE_SECTION_TITLE_CLASS,
|
|
} from "@/lib/contacts-chrome-classes"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
export function AddCoordinatesView() {
|
|
return (
|
|
<div>
|
|
<div className="mb-4 flex items-center justify-between">
|
|
<h3 className={CONTACTS_PAGE_SECTION_TITLE_CLASS}>
|
|
Ajouter des coordonnées (0)
|
|
</h3>
|
|
</div>
|
|
|
|
<p className={cn("py-8 text-center text-sm", CONTACTS_MUTED_TEXT)}>
|
|
Aucune suggestion disponible
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|