mirror of
https://github.com/bitwarden/browser
synced 2026-01-20 09:23:23 +00:00
setup org module and link org listing
This commit is contained in:
12
src/app/organizations/organizations.module.ts
Normal file
12
src/app/organizations/organizations.module.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
|
||||
import { VaultComponent } from './vault.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
VaultComponent,
|
||||
],
|
||||
entryComponents: [],
|
||||
providers: [],
|
||||
})
|
||||
export class OrganizationsModule { }
|
||||
1
src/app/organizations/vault.component.html
Normal file
1
src/app/organizations/vault.component.html
Normal file
@@ -0,0 +1 @@
|
||||
Org vault!!
|
||||
11
src/app/organizations/vault.component.ts
Normal file
11
src/app/organizations/vault.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import {
|
||||
Component
|
||||
} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-org-vault',
|
||||
templateUrl: 'vault.component.html',
|
||||
})
|
||||
export class VaultComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user