Skip to content

Commit 3a56660

Browse files
committed
Dashboard init
1 parent 786f566 commit 3a56660

File tree

3 files changed

+62
-0
lines changed

3 files changed

+62
-0
lines changed

public/assets/logo.svg

Lines changed: 36 additions & 0 deletions
Loading

src/pages/Dashboard/Dashboard.css

Whitespace-only changes.

src/pages/Dashboard/Dashboard.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { Container, Grid, Hidden, TextField } from "@material-ui/core";
2+
import React, { useState } from "react";
3+
4+
const Dashboard = () => {
5+
return (
6+
<>
7+
<div className="login-nav">
8+
<a href="/">
9+
<img src="/assets/logo.svg" alt="" />
10+
</a>
11+
<span>
12+
<TextField
13+
variant="outlined"
14+
className="text-field"
15+
placeholder="Search"
16+
type="email"
17+
style={{ width: 250 }}
18+
/>
19+
<button className="avatar"></button>
20+
</span>
21+
</div>
22+
</>
23+
);
24+
};
25+
26+
export default Dashboard;

0 commit comments

Comments
 (0)