import React from 'react'; import { uid } from '@formily/shared'; import { SchemaComponent, useRecord } from '@nocobase/client'; import { Card } from 'antd'; import { samlSchema } from './schemas/saml'; import { RedirectURLInput } from './RedirectURLInput'; import { useSamlTranslation } from './locale'; const schema = { type: 'object', properties: { [uid()]: samlSchema, }, }; export const SAMLPanel = () => { const { t } = useSamlTranslation(); return ( ); };