9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
|
import ProxyBackend from './implementation';
|
||
|
import AuthenticationPage from './AuthenticationPage';
|
||
|
|
||
|
export const NetlifyCmsBackendProxy = {
|
||
|
ProxyBackend,
|
||
|
AuthenticationPage,
|
||
|
};
|
||
|
export { ProxyBackend, AuthenticationPage };
|