Syntax
This commit is contained in:
parent
ac360f4544
commit
07f800fcc1
1 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
||||||
var React = require('react');
|
var React = require('react');
|
||||||
|
|
||||||
const projectData = [
|
const projectData = [
|
||||||
{key: 1, title: "College", info: "", link: ""}
|
{key: 1, title: "College", info: "", link: ""},
|
||||||
{key: 2, title: "Personal", info: "", link: ""}
|
{key: 2, title: "Personal", info: "", link: ""},
|
||||||
{key: 3, title: "Work", info: "", link: ""}
|
{key: 3, title: "Work", info: "", link: ""}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ var projectImages = React.createClass({
|
||||||
isHovered = (project.key == this.state.hover);
|
isHovered = (project.key == this.state.hover);
|
||||||
return (
|
return (
|
||||||
<div className="col-sm-4">
|
<div className="col-sm-4">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
Reference in a new issue