-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtemplate.htm
More file actions
50 lines (44 loc) · 1.83 KB
/
template.htm
File metadata and controls
50 lines (44 loc) · 1.83 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Template Demo</title>
<link rel="stylesheet" href="template.css">
</head>
<body>
<div id="root"></div>
<!--
React
https://reactjs.org/
-->
<script src="https://cdn.jsdelivr.net/npm/react@17.0.2/umd/react.production.min.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/react-dom@17.0.2/umd/react-dom.production.min.js" crossorigin="anonymous"></script>
<!--
DataFormsJS JSX Loader
https://www.dataformsjs.com/
https://github.com/dataformsjs/dataformsjs/blob/master/docs/jsx-loader.md
-->
<script src="https://cdn.jsdelivr.net/npm/dataformsjs@5/js/react/jsxLoader.min.js"></script>
<script>
// ** Delete this code block if not needed for your app
// Use `addBabelPolyfills` if your app needs `import` and `require`
// for Babel or `exports` and `require(module)` for the Browser:
//
// jsxLoader.globalNamespaces.classnames = 'classNames'; // Optional based on page modules
// jsxLoader.addBabelPolyfills();
</script>
<!--
*** Your Libraries here ***
-->
<!-- App Code -->
<script type="text/babel" src="template.jsx"></script>
<!--
If your page will not work with IE or other legacy browsers, then uncomment the following.
If it will work with all browsers then remove this section.
-->
<!--
<script nomodule src="https://cdn.jsdelivr.net/npm/dataformsjs@5/js/web-components/old-browser-warning.min.js"></script>
-->
</body>
</html>