Created
April 4, 2018 13:52
-
-
Save zgordon/aee67572b01573ba34f759861f8fee1b to your computer and use it in GitHub Desktop.
Logs out the React library (no React DOM)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Core React Library</title> | |
</head> | |
<body> | |
</body> | |
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
<script type="text/javascript"> | |
// Logs out the React Object | |
console.log( React ); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment