UNPKG
coreui-angular-ex
Version:
latest (4.5.14)
4.5.14
CoreUI Components Library for Angular
coreui.io/angular/
coreui/coreui-angular
coreui-angular-ex
/
projects
/
coreui-angular
/
src
/
lib
/
grid
/
col.component.ts
12 lines
(9 loc)
•
290 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import { Component }
from
'@angular/core'
; import { ColDirective }
from
'./col.directive'
; @
Component
({
selector
:
'c-col'
,
template
:
'<ng-content></ng-content>'
,
styleUrls
: [
'./col.component.scss'
],
standalone
:
true
}) export
class
ColComponent
extends
ColDirective
{}