UNPKG

metadata-editor-workspace

Version:

Metadata Editor Workspace module for ME-Core Powered by Assyst

27 lines (26 loc) 545 B
import {Component} from '@angular/core'; @Component({ selector: 'dashboard', templateUrl: ` <div id="leftPanel"> <dashboard-nav></dashboard-nav> </div> <div id="rightPanel"> <dashboard-grid></dashboard-grid> </div> `, styles: [` #leftPanel { float: left; width:25%; padding: 0 20px; } #rightPanel { float:left; width: 70%; } `] }) export class DashboardComponent {}