tachybase_todo/packages/plugins/verification/src/client/VerificationProviders.tsx
chenos 883f1e6fd1
fix: eslint (#1759)
* fix: eslint

* fix: eslint --fix

* fix: changelog
2023-04-25 13:12:14 +08:00

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>
);
}