-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (73 loc) · 2.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./src/assets/H8.jpg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<title>Real Estate Web Application</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<!-- // // import { useState } from 'react'
// import reactLogo from './assets/react.svg'
// import './App.css'
// import { useState } from 'react';
// import { sculptureList } from './data.js';
// export default function App() {
// let [index, setIndex] = useState(0);
// const [showMore, setShowMore] = useState(false);
// let hasNext = index < sculptureList.length - 1
// let hasPrev = index > 0
// function handleNextClick() {
// if (hasNext) {
// setIndex(index + 1);
// }
// }
// function handlePrevClick() {
// if (hasPrev) {
// setIndex(index - 1);
// }
// }
// function handleMoreClick() {
// setShowMore(!showMore);
// }
// let sculpture = sculptureList[index];
// return (
// <>
// <h2>MY TWITTER CIRCLE FOR 2022</h2>
// <button className="button" onClick={handlePrevClick}>
// Prev
// </button>
// <button className="button" onClick={handleNextClick}>
// Next
// </button>
// <h2>
// {/* {sculpture.artist} */}
// <p>
// {' '}
// DEV <i>{sculpture.name} </i>
// </p>
// </h2>
// <h3>
// ({index + 1} of {sculptureList.length})
// </h3>
// <button onClick={handleMoreClick}>
// {showMore ? 'Hide' : 'Show'} BIO
// </button>
// {showMore && <p>{sculpture.description}</p>}
// <img
// src={sculpture.url}
// // style={{ width: '200px', height: '200px' }}
// className="img"
// alt={sculpture.alt}
// />
// </>
// );
// }
-->
</body>
</html>