Summary: global variable was renamed from `Sonar` to `Flipper`. Fixes #267. Reviewed By: passy Differential Revision: D9934362 fbshipit-source-id: 0c03f3e12d9db26c5c7e9430fc98ba7fffd0bf54
22 lines
553 B
HTML
22 lines
553 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="stylesheet" href="graphiql/graphiql.css">
|
|
<link rel="stylesheet" href="vis/vis.min.css">
|
|
<title>Flipper</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script>
|
|
global.electronRequire = window.require;
|
|
</script>
|
|
<script src="bundle.js"></script>
|
|
<script>
|
|
global.Flipper.init();
|
|
</script>
|
|
</body>
|
|
</html>
|