Skip to content

Instantly share code, notes, and snippets.

@nirkaufman
Created January 26, 2022 19:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nirkaufman/a13471f9fad5270f8590e266fb452b49 to your computer and use it in GitHub Desktop.
Save nirkaufman/a13471f9fad5270f8590e266fb452b49 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NgxBlocklyModule } from 'ngx-blockly';
import "blockly/blocks";
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgxBlocklyModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment