11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
import AzureBackend from './implementation';
|
|
import API from './API';
|
|
import AuthenticationPage from './AuthenticationPage';
|
|
|
|
export const NetlifyCmsBackendAzure = {
|
|
AzureBackend,
|
|
API,
|
|
AuthenticationPage,
|
|
};
|
|
export { AzureBackend, API, AuthenticationPage };
|