project files

This commit is contained in:
rahuldkjain
2020-07-15 18:45:37 +05:30
parent 8523d5db49
commit 57f5717151
73 changed files with 20187 additions and 51 deletions
+21
View File
@@ -0,0 +1,21 @@
import React from 'react';
const Addons = (props) => {
return (
<div className="section">
<h3>Add-ons</h3>
<div className="checkbox">
<input type="checkbox" checked={props.data.visitorsBadge}
onChange={event => props.handleCheckChange('visitorsBadge')}/>
<span className="checkboxLabel"> &nbsp; display visitors count badge</span>
</div>
<div className="checkbox">
<input type="checkbox" checked={props.data.githubStats}
onChange={event => props.handleCheckChange('githubStats')} />
<span className="checkboxLabel"> &nbsp; display github profile stats card</span>
</div>
</div>
)
}
export default Addons;