Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

not import in standalone component #103

Open
ekta-rupareliya opened this issue Jan 11, 2024 · 1 comment
Open

not import in standalone component #103

ekta-rupareliya opened this issue Jan 11, 2024 · 1 comment

Comments

@ekta-rupareliya
Copy link

how to import NgxMasonryModule in standalone component?

@miketeo
Copy link

miketeo commented Jan 16, 2024

In your main.ts

bootstrapApplication(AppComponent, {
  providers: [
    importProvidersFrom(NgxMasonryModule),
  ]
});

Then, in each standalone component,

@Component({
  standalone: true,
  imports: [
    NgxMasonryModule,
  ],
  selector: 'my-component',
  templateUrl: './my.component.html',
})
export class MyComponent {
  ...
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants