Skip to content

Instantly share code, notes, and snippets.

@blakazulu
Created November 4, 2020 20:39
Show Gist options
  • Save blakazulu/9fa3105d67d14302e0fc860f528083f3 to your computer and use it in GitHub Desktop.
Save blakazulu/9fa3105d67d14302e0fc860f528083f3 to your computer and use it in GitHub Desktop.
medium-text-bg-animation-demo
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { AppComponent } from "./app.component";
import { BubblingTextDirective } from "./bubbling-text.directive";
@NgModule({
imports: [BrowserModule],
declarations: [AppComponent, BubblingTextDirective],
bootstrap: [AppComponent]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment