diff --git a/src/app/scaffold.ng.html b/src/app/scaffold.ng.html
index 62264be..e9e6a7c 100644
--- a/src/app/scaffold.ng.html
+++ b/src/app/scaffold.ng.html
@@ -1,4 +1,5 @@
+
diff --git a/src/app/shelf.ng.html b/src/app/shelf.ng.html
new file mode 100644
index 0000000..6dbc743
--- /dev/null
+++ b/src/app/shelf.ng.html
@@ -0,0 +1 @@
+
diff --git a/src/app/shelf.ts b/src/app/shelf.ts
new file mode 100644
index 0000000..f280053
--- /dev/null
+++ b/src/app/shelf.ts
@@ -0,0 +1,33 @@
+/**
+ * @license
+ * Copyright 2022 Google LLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import {ChangeDetectionStrategy, Component} from '@angular/core';
+
+/**
+ * Shelf component for DAG graph.
+ */
+@Component({
+ selector: 'ai-dag-shelf',
+ templateUrl: './shelf.ng.html',
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ standalone: true,
+ host: {
+ 'class': 'ai-dag-shelf',
+ },
+})
+export class AiDagShelf {
+}