-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDashboard.js
38 lines (35 loc) · 946 Bytes
/
Dashboard.js
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
import React from 'react';
import './style.css';
export default function Dashboard() {
return (
<div>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="sidebar">
<h2>Dashboard</h2>
<ul>
<li><a href="dashboard.html">Home</a></li>
<li><a href="locations.html">Locations</a></li>
<li><a href="#">Settings</a></li>
</ul>
</div>
<div class="conedison">
<img src="conedison.png" height = "60px" width = "280px">
</div>
<div class="content">
<h1>Welcome to the Con Edison</h1>
<p>Your one stop destination for a Smart Home Energy Management.</p>
<p></p>
</div>
</body>
</html>
</div>
);
}