Skip to content

Instantly share code, notes, and snippets.

@rishichawda
Last active May 18, 2019 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rishichawda/de65a5b99d64bdb875dd2b7ae8a40ec4 to your computer and use it in GitHub Desktop.
Save rishichawda/de65a5b99d64bdb875dd2b7ae8a40ec4 to your computer and use it in GitHub Desktop.
Initial ChildComponent.js for Managing Application state without Redux
import React from 'react';
const ChildComponent = () => {
return (
<div>
<p>This is the child component</p>
</div>
);
}
export default ChildComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment