React állapot

This commit is contained in:
Kovács Rudolf
2026-09-17 11:21:39 +02:00
parent fda0dc216c
commit 2ccad9bf13
2 changed files with 62 additions and 0 deletions

19
react_allapot/index.html Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>React bevezető</title>
<script crossorigin src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<script defer src="app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body>
<h2>Boxok</h2>
<div id="root"></div>
</body>
</html>