Fix warnings

This commit is contained in:
2021-03-09 10:56:15 -06:00
parent bd190d30cb
commit 617d78ae24
18 changed files with 65 additions and 34 deletions

View File

@@ -1,7 +1,7 @@
import React from 'react';
import './CheckBox.css';
export default props => {
const CheckBox = props => {
return (
<div className={'CheckBoxOwner'}>
<label className='CheckBoxLabel'>{props.label}
@@ -15,3 +15,5 @@ export default props => {
</div>
);
};
export default CheckBox;