import { OptionsComponentProvider, SigninPageProvider } from '@nocobase/client'; import React from 'react'; import { SigninPage } from './SigninPage'; import { useAuthTranslation } from './locale'; import { authType } from '../constants'; import { Options } from './Options'; export const SmsAuthProvider = (props) => { const { t } = useAuthTranslation(); return ( {props.children} ); };