Skip to content

Instantly share code, notes, and snippets.

@samg11
Created February 22, 2021 23:38
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 samg11/7a03d458d3d4a99510ffa4c23c3753d4 to your computer and use it in GitHub Desktop.
Save samg11/7a03d458d3d4a99510ffa4c23c3753d4 to your computer and use it in GitHub Desktop.
express app with react frontend client
const React = require('react');
function Index(props) {
return <h1>Hello {props.name}!</h1>;
}
export default Index;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment