Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
strangelookingnerd committed Dec 2, 2024
1 parent bed7131 commit ef78205
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
5 changes: 3 additions & 2 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ import {InfosComponent} from "./infos/infos.component";
import {ParticlesComponent} from "./particles/particles.component";

@Component({
standalone: true,
selector: "app-root",
templateUrl: "./app.component.html",
imports: [
InfosComponent,
ParticlesComponent
ParticlesComponent,
InfosComponent
],
styleUrls: ["./app.component.css"]
})
Expand Down
10 changes: 1 addition & 9 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,13 @@
import {NgModule} from '@angular/core';
import {bootstrapApplication, BrowserModule} from '@angular/platform-browser';
import {NgxParticlesModule} from "@tsparticles/angular";

import {AppComponent} from './app.component';
import {ParticlesComponent} from './particles/particles.component';
import {InfosComponent} from './infos/infos.component';
import {NgOptimizedImage} from "@angular/common";

@NgModule({
declarations: [],
imports: [
BrowserModule,
NgxParticlesModule,
NgOptimizedImage,
AppComponent,
ParticlesComponent,
InfosComponent
AppComponent
],
providers: []
})
Expand Down

0 comments on commit ef78205

Please sign in to comment.