project files
This commit is contained in:
@@ -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"> display visitors count badge</span>
|
||||
</div>
|
||||
<div className="checkbox">
|
||||
<input type="checkbox" checked={props.data.githubStats}
|
||||
onChange={event => props.handleCheckChange('githubStats')} />
|
||||
<span className="checkboxLabel"> display github profile stats card</span>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default Addons;
|
||||
Reference in New Issue
Block a user