UNPKG

sanity-plugin-seo

Version:

Complete SEO toolkit for Sanity Studio with live scoring, AI suggestions, team workflows, and 30+ structured data types. Free and AI tiers live. Pro coming soon.

8 lines (7 loc) 243 B
import React from "react"; interface Props { value: Record<string, any> | undefined; onChange: (keywords: string[]) => void; } export default function AIKeywordsSection({ value, onChange }: Props): React.JSX.Element | null; export {};