21 lines
520 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>test-mini-app</title>
<script src="https://telegram.org/js/telegram-web-app.js?56" defer></script>
<script src="//unpkg.com/alpinejs" defer></script>
</head>
<body>
<div x-data="{ open: false }">
<button @click="open = !open">Expand</button>
<span x-show="open">
Contenido...
</span>
</div>
</body>
</html>