File size: 525 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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,
}
|