mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-15 09:04:45 +00:00
a8fb355a8d
- Open wallet connect modal when the application is opened from a deep link - Add test entry that opens wallet connect modal with mocked StatusDesktop app that can be used for testing - Add tests Closes #12641
21 lines
415 B
HTML
21 lines
415 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>App and Integration</title>
|
|
<style>
|
|
iframe {
|
|
width: 50vh;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>App Page</h2>
|
|
<iframe src="http://localhost:8080"></iframe>
|
|
<h2>Wallet Page</h2>
|
|
<iframe src="http://localhost:8081"></iframe>
|
|
</body>
|
|
</html>
|