import { OptionsComponentProvider, SigninPageExtensionProvider } from '@nocobase/client'; import React, { FC } from 'react'; import { OIDCButton } from './OIDCButton'; import { authType } from '../constants'; import { Options } from './Options'; export const OidcProvider: FC = (props) => { return ( {props.children} ); };