File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 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';
6363export { default as CLink } from './link/CLink' ;
6464export { default as CListGroup } from './list-group/CListGroup' ;
6565export { 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 } ;
6677export { default as CMedia } from './media/CMedia' ;
6778export { default as CMediaBody } from './media/CMediaBody' ;
6879export { default as CModal } from './modal/CModal' ;
You can’t perform that action at this time.
0 commit comments