21 lines
870 B
HTML
21 lines
870 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" href="index.css">
|
|
<meta charset="utf-8" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Wellfleet&display=swap" rel="stylesheet">
|
|
<title>Proximo</title>
|
|
</head>
|
|
<body>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<div id="like_button_container"></div>
|
|
|
|
<!-- Load React. -->
|
|
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
|
|
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
|
|
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
|
|
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
|
|
<!-- Load our React component. -->
|
|
<script src="index.js" type="text/babel"></script>
|
|
</body>
|
|
</html>
|