File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,17 @@ export {default as CJumbotron} from './jumbotron/CJumbotron';
63
63
export { default as CLink } from './link/CLink' ;
64
64
export { default as CListGroup } from './list-group/CListGroup' ;
65
65
export { default as CListGroupItem } from './list-group/CListGroupItem' ;
66
+ import React from 'react'
67
+ const wrapper = props => {
68
+ console . warn ( 'CListGroupItemText component is deprecated, please use div tag instead' )
69
+ return < div { ...props } > </ div >
70
+ }
71
+ const heading = props => {
72
+ console . warn ( 'CListGroupItemHeading component is deprecated, please use h5 tag instead' )
73
+ return < h5 { ...props } > </ h5 >
74
+ }
75
+ export { wrapper as CListGroupItemText } ;
76
+ export { heading as CListGroupItemHeading } ;
66
77
export { default as CMedia } from './media/CMedia' ;
67
78
export { default as CMediaBody } from './media/CMediaBody' ;
68
79
export { default as CModal } from './modal/CModal' ;
You can’t perform that action at this time.
0 commit comments