xSlok
xSlok

Reputation: 599

Angular Cli - Import component service from anoter component

How can I import a component service from another component?

this is my project structure

enter image description here

I want to import "organization.service" on the user-form.component.

I tried

import { OrganizationService } from '.../organizations/shared/organization.service';

with no success, I get an error saying 'Cannot find module'

Thanks!

Upvotes: 0

Views: 31

Answers (1)

jackel414
jackel414

Reputation: 1686

Try:

import { OrganizationService } from '../../organizations/shared/organization.service';

Two dots instead of three and you need to go up one more level.

Upvotes: 1

Related Questions