20 lines
423 B
TypeScript
20 lines
423 B
TypeScript
import { SchemaComponent } from '@nocobase/client';
|
|
import React from 'react';
|
|
import { Card } from 'antd';
|
|
|
|
import providers from './schemas/providers';
|
|
import ProviderOptions from './ProviderOptions';
|
|
|
|
export function VerificationProviders() {
|
|
return (
|
|
<Card bordered={false}>
|
|
<SchemaComponent
|
|
schema={providers}
|
|
components={{
|
|
ProviderOptions,
|
|
}}
|
|
/>
|
|
</Card>
|
|
);
|
|
}
|