react-code-dataset / admin-bro /src /frontend /components /app /auth-background-component.tsx
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
525 Bytes
import React from 'react'
import allowOverride from '../../hoc/allow-override.js'
const AuthenticationBackgroundComponent: React.FC = () => null
const OverridableAuthenticationBackgroundComponent = allowOverride(AuthenticationBackgroundComponent, 'AuthenticationBackgroundComponent')
export {
OverridableAuthenticationBackgroundComponent as default,
OverridableAuthenticationBackgroundComponent as AuthenticationBackgroundComponent,
AuthenticationBackgroundComponent as OriginalAuthenticationBackgroundComponent,
}