Skip to content

Commit

Permalink
add nucleus-box
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasferreiralimax committed Nov 5, 2024
1 parent 46b838d commit bfba83f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<nucleus-angular-app [config]="configNucleus">
<div class="content">
<nucleus-box>
<darkmode-angular />
</div>
</nucleus-box>
</nucleus-angular-app>
4 changes: 2 additions & 2 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import { BrowserModule } from '@angular/platform-browser';

import { AppComponent } from './app.component';
import { DarkmodeComponent } from 'projects/darkmode-angular/src/public-api';
import { NucleusAngularApp } from 'nucleus-angular';
import { NucleusAngularApp, NucleusBox } from 'nucleus-angular';

@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, DarkmodeComponent, NucleusAngularApp],
imports: [BrowserModule, DarkmodeComponent, NucleusAngularApp, NucleusBox],
providers: [],
bootstrap: [AppComponent],
})
Expand Down

0 comments on commit bfba83f

Please sign in to comment.