Summary: renaming across the app: - comments - variable names - constants Reviewed By: passy Differential Revision: D9861792 fbshipit-source-id: 72dea05d1427b1dc0f54a7865cc0ecffd69bdb27
22 lines
551 B
HTML
22 lines
551 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.Sonar.init();
|
|
</script>
|
|
</body>
|
|
</html>
|