mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-22 05:50:48 +02:00
23 lines
890 B
TypeScript
23 lines
890 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Akveo. All Rights Reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*/
|
|
|
|
import { NgxLandingFooterComponent } from './footer/footer.component';
|
|
import { NgxLandingHeaderComponent } from './header/header.component';
|
|
import { NgxSectionTitleComponent } from './section-title/section-title.component';
|
|
import { NgxPageTabsComponent } from './page-tabs/page-tabs.component';
|
|
import { NgxPageTocComponent } from './page-toc/page-toc.component';
|
|
import { NgxFragmentTargetDirective } from './fragment-target/fragment-target.directive';
|
|
import { NgxDocsFooterComponent } from './docs-footer/footer.component';
|
|
|
|
export {
|
|
NgxLandingHeaderComponent,
|
|
NgxLandingFooterComponent,
|
|
NgxSectionTitleComponent,
|
|
NgxPageTabsComponent,
|
|
NgxPageTocComponent,
|
|
NgxFragmentTargetDirective,
|
|
NgxDocsFooterComponent,
|
|
};
|