import { NgModule } from '@angular/core';
import { WelcomeRoutingModule } from './welcome-routing.module';
import { WelcomeComponent } from './welcome.component';
import { NgBlocklyModule } from '@ng-blockly/blockly';

@NgModule({
  imports: [WelcomeRoutingModule, NgBlocklyModule],
  declarations: [WelcomeComponent],
  exports: [WelcomeComponent]
})
export class WelcomeModule { }
