mirror of
https://github.com/speice-io/isomorphic-rust
synced 2024-11-05 07:38:23 -05:00
17 lines
318 B
HTML
17 lines
318 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Hello World!</title>
|
||
|
<link rel="stylesheet" href="index.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>💖 Hello World!</h1>
|
||
|
<p>Welcome to your Electron application.</p>
|
||
|
|
||
|
<div id="app"></div>
|
||
|
</body>
|
||
|
|
||
|
<script src="./bundle.js"></script>
|
||
|
</html>
|