Initial commit

Basic frontend design with schemas management
diff --git a/www/yang/yang.component.ts b/www/yang/yang.component.ts
new file mode 100644
index 0000000..076330f
--- /dev/null
+++ b/www/yang/yang.component.ts
@@ -0,0 +1,11 @@
+import { Component } from '@angular/core';
+
+@Component({
+  selector : 'netopeer-yang',
+  templateUrl : './yang.component.html',
+  styleUrls : ['../netopeer.content.css']
+})
+
+export class YANGComponent {
+  title = 'YANG Explorer';
+}