-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Milo Rastgoo
committed
Jan 3, 2020
1 parent
6004564
commit b58c47f
Showing
10 changed files
with
321 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,61 @@ | ||
import React from 'react'; | ||
import Navigation from './navigation'; | ||
import logo from '../../assets/logo.png'; | ||
|
||
const Sidebar = props => ( | ||
<div> | ||
<aside> | ||
<div className="logo"> | ||
<img src={`${logo}`} /> | ||
</div> | ||
<form> | ||
<label htmlFor="Android Development"> | ||
<label htmlFor="Android Development" className="check"> | ||
<input | ||
type="checkbox" | ||
name="Android Development" | ||
id="Android Development" | ||
onChange={props.handlesChanges} | ||
/> | ||
Android Developer | ||
<span>Android Developer</span> | ||
</label> | ||
<label htmlFor="Data Science"> | ||
<label htmlFor="Data Science" className="check"> | ||
<input | ||
type="checkbox" | ||
name="Data Science" | ||
id="Data Science" | ||
onChange={props.handlesChanges} | ||
/> | ||
Data Science | ||
<span>Data Science</span> | ||
</label> | ||
<label htmlFor="iOS Development"> | ||
<label htmlFor="iOS Development" className="check"> | ||
<input | ||
type="checkbox" | ||
name="iOS Development" | ||
id="iOS Development" | ||
onChange={props.handlesChanges} | ||
/> | ||
iOS Developer | ||
<span>iOS Developer</span> | ||
</label> | ||
<label htmlFor="Web Development"> | ||
<label htmlFor="Web Development" className="check"> | ||
<input | ||
type="checkbox" | ||
name="Web Development" | ||
id="Web Development" | ||
onChange={props.handlesChanges} | ||
/> | ||
Web Developer | ||
<span>Web Developer</span> | ||
</label> | ||
<label htmlFor="UX Design"> | ||
<label htmlFor="UX Design" className="check"> | ||
<input | ||
type="checkbox" | ||
name="UX Design" | ||
id="UX Design" | ||
onChange={props.handlesChanges} | ||
/> | ||
UX Design | ||
<span>UX Design</span> | ||
</label> | ||
</form> | ||
<Navigation /> | ||
</div> | ||
</aside> | ||
); | ||
|
||
export default Sidebar; |
Oops, something went wrong.