You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
774 B
TypeScript

// frontend/components/settings/ConnectionsTab.tsx — 일정·금융·건강·지식·채팅 외부 연동
"use client";
import { ConnectorList } from "./ConnectorList";
import type { ToastFn } from "./SettingsClient";
export function ConnectionsTab({ toast }: { toast: ToastFn }) {
return (
<ConnectorList
title="연결된 데이터 소스"
subtitle="일정·금융·건강·지식·채팅을 연결하면 아리가 한 화면에서 챙겨드려요."
icon="link"
filter={(c) => c.domain !== "mail"}
toast={toast}
showSyncAll
emptyText="연결된 데이터 소스가 없어요. ‘계정 추가’로 Google 캘린더를 연결하세요."
addDomain="calendar"
redirectAfter="/settings?tab=connect"
/>
);
}