Skip to content

Instantly share code, notes, and snippets.

@adityatyagi
Created June 7, 2022 14:22
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/75d9d837e6bbafcc908eddf3899ba6e1 to your computer and use it in GitHub Desktop.
Save adityatyagi/75d9d837e6bbafcc908eddf3899ba6e1 to your computer and use it in GitHub Desktop.
import React from "react";
const Demo = (props) => {
return <p>{props.show ? "This is new" : ""}</p>;
};
export default Demo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment