Skip to content

Commit

Permalink
rootSagas added, index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
divyanshu-rawat committed Oct 7, 2018
1 parent bcfbb58 commit fbe080a
Show file tree
Hide file tree
Showing 9 changed files with 108 additions and 89 deletions.
Empty file added .env
Empty file.
152 changes: 76 additions & 76 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions src/App.js
Expand Up @@ -6,7 +6,7 @@ import Footer from './ignitus-Footer';
import Contributors from './ignitus-Contributors';
import GetStarted from './ignitus-GetStarted';
import Introduction from './ignitus-Introduction';
import Testimonial from './ignitus-Testimonial/Containers/TestimonialContainer';
import Testimonial from './ignitus-Testimonial';
import CardLayout from './ignitus-WhatWeDo';
import Partner from './ignitus-Partners';

Expand All @@ -19,6 +19,7 @@ import loader from './Assets/Images/loader.gif';
import data from './Data/data-card-layout';
import './App.css';


class App extends Component {
constructor() {
super();
Expand Down Expand Up @@ -50,7 +51,7 @@ class App extends Component {
<CardLayout data={data}/>
<Contributors />
<Partner />
<Testimonial />
<Testimonial.containers.TestimonialContainer />
<GetStarted />
<Footer />
</div>
Expand Down
6 changes: 0 additions & 6 deletions src/ignitus-Testimonial/Components/Testimonial.js
Expand Up @@ -99,12 +99,6 @@ class Testimonial extends Component {
this.getData()
}

componentDidUpdate(){}

// shouldComponentUpdate(nextProps, nextState){
// console.log('nextProps',nextProps)
// console.log('nextState',nextState)
// }

getData(){
this.props.get_testimonial_data()
Expand Down
2 changes: 2 additions & 0 deletions src/ignitus-Testimonial/Components/index.js
@@ -0,0 +1,2 @@

export { default as Testimonial } from './Testimonial';
3 changes: 3 additions & 0 deletions src/ignitus-Testimonial/Containers/index.js
@@ -0,0 +1,3 @@

export { default as TestimonialContainer } from './TestimonialContainer';

0 comments on commit fbe080a

Please sign in to comment.