/** * Main exported module for the C2C Platform */ import { NgModule } from '@angular/core'; import { PlatformComponentsModule } from './components/components.module'; @NgModule({ exports: [ PlatformComponentsModule, ], imports: [ PlatformComponentsModule, ], }) export class PlatformModule { }