-
Notifications
You must be signed in to change notification settings - Fork 5
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
Showing
13 changed files
with
55 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import React, { Component } from 'react'; | ||
import PROJECTS from './data/projects'; | ||
|
||
class Projects extends Component { | ||
render() { | ||
return ( | ||
<div> | ||
<h2>Highlighted Projects</h2> | ||
<div> | ||
{ | ||
PROJECTS.map(PROJECT => { | ||
return ( | ||
<div key={PROJECT.id}>{PROJECT.title}</div> | ||
); | ||
}) | ||
} | ||
</div> | ||
</div> | ||
); | ||
} | ||
} | ||
|
||
export default Projects; |
Binary file not shown.
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.
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.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import project1 from '../assets/project1.png'; | ||
import project2 from '../assets/project2.png'; | ||
import project3 from '../assets/project3.png'; | ||
|
||
const PROJECTS = [ | ||
{ | ||
id: 1, | ||
title: 'Example React Application', | ||
description: 'A React App that I built, involving JS and core web dev concepts!', | ||
link: 'https://github.com/15Dkatz/example', | ||
image: project1 | ||
}, | ||
{ | ||
id: 2, | ||
title: 'MY API', | ||
description: 'A REST API that I built form scratch with GET and POST requests!', | ||
link: 'https://github.com/15Dkatz/example', | ||
image: project2 | ||
}, | ||
{ | ||
id: 3, | ||
title: 'Operating Systems Final Project', | ||
description: 'My unique final project for my university Operating Systems course.', | ||
link: 'https://github.com/15Dkatz/example', | ||
image: project3 | ||
} | ||
]; | ||
|
||
export default PROJECTS; |