Create intial config setup modal

remove the registry title
This commit is contained in:
Sam Chow 2018-06-12 11:28:58 -04:00
parent e250f4ebe6
commit 690b7674e7
9 changed files with 121 additions and 18 deletions

View file

@ -0,0 +1,11 @@
import { Input, Component, Inject } from 'ng-metadata/core';
const templateUrl = require('./load-config.html');
@Component({
selector: 'load-config',
templateUrl,
})
export class LoadConfigComponent {
constructor() {
}
}