Skip to content

Instantly share code, notes, and snippets.

@adityatyagi
Created June 7, 2022 14:26
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 adityatyagi/7ee5da4b0c2255c394d1e5313f4b2c17 to your computer and use it in GitHub Desktop.
Save adityatyagi/7ee5da4b0c2255c394d1e5313f4b2c17 to your computer and use it in GitHub Desktop.
import React from "react";
const DemoOutput = (props) => {
console.log("Demo runs");
return (
<div>
<h3>This is demo output component and will remain static</h3>
<p>{props.show ? "Only this will render" : ""}</p>
</div>
);
};
export default DemoOutput;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment