-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsx.html
26 lines (25 loc) · 978 Bytes
/
jsx.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
26
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>intl-message demo with JSX</title>
<style>
html { font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji; }
section > intl-message,
section > intl-datetime,
section > intl-relative-time,
section > intl-number { display: block; }
</style>
</head>
<body>
<h1>intl-message demo with JSX</h1>
<!-- polyfill for safari and locale data -->
<script src="https://unpkg.com/intl-relative-time-format"></script>
<script src="https://unpkg.com/intl-relative-time-format/locale-data/en"></script>
<script src="https://unpkg.com/intl-relative-time-format/locale-data/fr"></script>
<script src="https://unpkg.com/intl-relative-time-format/locale-data/ar"></script>
<script src="https://unpkg.com/intl-relative-time-format/locale-data/zh"></script>
<script src="jsx.js"></script>
<script src="iframeheight.js"></script>
</body>
</html>