Skip to content

Instantly share code, notes, and snippets.

@dance2die
Last active October 7, 2019 11:32
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 dance2die/f368f1116bbc34886334d3294817cb7c to your computer and use it in GitHub Desktop.
Save dance2die/f368f1116bbc34886334d3294817cb7c to your computer and use it in GitHub Desktop.
import React from 'react';
import { render } from 'react-dom';
const App = () => (
<React.Fragment>
<h1>React in ASP.NET MVC!</h1>
<div>Hello React World</div>
</React.Fragment>
);
render(<App />, document.getElementById('app'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment