File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,6 @@ CFormFeedback.propTypes = {
37
37
tooltip : PropTypes . bool
38
38
} ;
39
39
40
- // export const CValidFeedback = props => <CFormFeedback {...props} valid/>
41
- // export const CInvalidFeedback = props => <CFormFeedback {...props} valid={false}/>
40
+ export const CValidFeedback = props => < CFormFeedback { ...props } valid />
41
+ export const CInvalidFeedback = props => < CFormFeedback { ...props } valid = { false } />
42
42
export default CFormFeedback
Original file line number Diff line number Diff line change @@ -42,7 +42,11 @@ export {default as CDropdownItem} from './CDropdownItem';
42
42
export { default as CDropdownMenu } from './CDropdownMenu' ;
43
43
export { default as CDropdownToggle } from './CDropdownToggle' ;
44
44
export { default as CForm } from './CForm' ;
45
- export { default as CFormFeedback } from './CFormFeedback' ;
45
+ export {
46
+ CValidFeedback ,
47
+ CInvalidFeedback
48
+ }
49
+ from './CFormFeedback' ;
46
50
export { default as CFormGroup } from './CFormGroup' ;
47
51
export { default as CFormText } from './CFormText' ;
48
52
export {
You can’t perform that action at this time.
0 commit comments