@tririga/cra-template
Version:
Quickstart Create React App (CRA) template for building TRIRIGA UX Web applications using ReactJS and IBM Carbon Components.
30 lines (29 loc) • 787 B
HTML
<html>
<head>
<meta charset="utf-8" />
<base href="%REACT_APP_BASE_PATH%" />
<link rel="icon" href="favicon.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<link rel="apple-touch-icon" href="Tririga-Logo-192x192.png" />
<link rel="manifest" href="manifest.json" />
<title>TRIRIGA UX Web Application Template</title>
<style>
.gear-loading {
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<img src="Gear-0.2s-100px.gif" class="gear-loading" />
</div>
</body>
</html>