1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

convert export to ts component

This commit is contained in:
Kyle Spearrin
2017-11-14 11:29:00 -05:00
parent b9139eec33
commit 00b8a3e7be
7 changed files with 176 additions and 172 deletions

View File

@@ -1,4 +1,5 @@
import * as angular from 'angular';
import { ExportComponent } from './export.component';
import { PasswordGeneratorComponent } from './password-generator.component';
import { ToolsComponent } from './tools.component';
@@ -7,5 +8,6 @@ export default angular
.component('tools', ToolsComponent)
.component('passwordGenerator', PasswordGeneratorComponent)
.component('export', ExportComponent)
.name;