-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SHIBUI-572: Added provider wizard and container folder;
- Loading branch information
Jodie Muramoto
committed
Jun 21, 2018
1 parent
4d5d26a
commit f9ee2db
Showing
3 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div class="container-fluid p-3" role="main"> | ||
Hi. I'm the metadata provider wizard. | ||
</div> |
Empty file.
13 changes: 13 additions & 0 deletions
13
ui/src/app/metadata/provider/container/wizard.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { Component } from '@angular/core'; | ||
import { Router } from '@angular/router'; | ||
|
||
@Component({ | ||
selector: 'wizard-page', | ||
templateUrl: './wizard.component.html', | ||
styleUrls: ['./wizard.component.scss'] | ||
}) | ||
|
||
export class WizardComponent { | ||
|
||
} | ||
|