mirror of
https://gitlab.com/ryzen-controller-team/ryzen-controller.git
synced 2024-12-22 10:03:28 +07:00
20 lines
584 B
HTML
20 lines
584 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Hello World!</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Hello World!</h1>
|
||
|
<!-- All of the Node.js APIs are available in this renderer process. -->
|
||
|
We are using Node.js <script>document.write(process.versions.node)</script>,
|
||
|
Chromium <script>document.write(process.versions.chrome)</script>,
|
||
|
and Electron <script>document.write(process.versions.electron)</script>.
|
||
|
|
||
|
<script>
|
||
|
// You can also require other files to run in this process
|
||
|
require('./renderer.js')
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|