Skip to content

Commit

Permalink
Merge pull request #4 from HR-FEC-BLAZARS/addFeatureComponents
Browse files Browse the repository at this point in the history
Add feature components to app, add style directory, add assets directory
  • Loading branch information
mdoudy90 authored Jul 2, 2020
2 parents 439162b + c32e949 commit 26b3857
Show file tree
Hide file tree
Showing 10 changed files with 50 additions and 6 deletions.
Binary file added client/dist/assets/fullscreen-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/dist/assets/left-arrow-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/dist/assets/right-arrow-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 9 additions & 6 deletions client/src/components/App.jsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
import React from "react";
import Overview from './Overview.jsx';
import RelatedItemsAndComparison from './RelatedItemsAndComparison.jsx';
import QuestionsAndAnswers from './QuestionsAndAnswers.jsx';
import RatingsAndReviews from './RatingsAndReviews.jsx';

class App extends React.Component {
constructor(props) {
super(props);
this.state = {
}
this.state = {}
}
render() {
const { name } = this.props;
return (
<>
<h1>
Hello World!
</h1>
<Overview />
<RelatedItemsAndComparison />
<QuestionsAndAnswers />
<RatingsAndReviews />
</>
);
}
Expand Down
10 changes: 10 additions & 0 deletions client/src/components/Overview.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';

const Overview = () => {
return (
// Overview Components go here
<></>
);
}

export default Overview;
10 changes: 10 additions & 0 deletions client/src/components/QuestionsAndAnswers.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';

const QuestionsAndAnswers = () => {
return (
// Questions and Answers Components go here
<></>
);
}

export default QuestionsAndAnswers;
10 changes: 10 additions & 0 deletions client/src/components/RatingsAndReviews.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';

const RatingsAndReviews = () => {
return (
// Ratings and Reviews Components go here
<></>
);
}

export default RatingsAndReviews;
10 changes: 10 additions & 0 deletions client/src/components/RelatedItemsAndComparison.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';

const RelatedItemsAndComparison = () => {
return (
// Related Items and Comparison Components go here
<></>
);
}

export default RelatedItemsAndComparison;
1 change: 1 addition & 0 deletions client/src/styles.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import './styles/overview.scss';
Empty file added client/src/styles/overview.scss
Empty file.

0 comments on commit 26b3857

Please sign in to comment.