12 lines
333 B
TypeScript
12 lines
333 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
import { BlockComponent } from './block.component';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-block-preview',
|
||
|
templateUrl: './block-preview.component.html',
|
||
|
styleUrls: ['./block.component.scss', './block-preview.component.scss']
|
||
|
})
|
||
|
export class BlockPreviewComponent extends BlockComponent {
|
||
|
|
||
|
}
|