-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
25 lines (21 loc) · 834 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CDN EXAMPLE</title>
</head>
<body>
<div id="container"></div>
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<!-- <script type="text/javascript" crossorigin
src="https://unpkg.com/react-js-css-loaders@latest/dist/bundle.umd.js"></script> -->
<script src="./node_modules/react-js-css-loaders/dist/bundle.umd.js"></script>
<script>
const { Moon } = window.ReactCSSLoaders;
const container = document.getElementById('container')
ReactDOM.render(React.createElement(Moon), container)
</script>
</body>
</html>