UNPKG

@blocklet/ui-react

Version:

Some useful front-end web components that can be used in Blocklets.

12 lines (11 loc) 293 B
type PrivacyConfig = { key: string; name: string; value: boolean; isPrivate?: boolean; }; export default function Privacy({ configList, onSave, }: { configList: PrivacyConfig[]; onSave: (type: 'privacy') => void; }): import("react/jsx-runtime").JSX.Element; export {};