Skip to content

Commit

Permalink
login component with the logo
Browse files Browse the repository at this point in the history
  • Loading branch information
shrutimalik123 committed Jan 5, 2022
1 parent 004b3f0 commit 2766cbd
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import './App.css';

import Login from "./Login";
function App() {
return (
<div className="app">
<h1>I am building Spotify clone following Clever Programmer tutorial</h1>
<Login/>
</div>
);
}
Expand Down
Empty file added src/Login.css
Empty file.
16 changes: 16 additions & 0 deletions src/Login.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react';
import "./Login.css";

function Login() {
return (
<div className="login">
<h1>I am the login page</h1>
<img
src="https://getheavy.com/wp-content/uploads/2019/12/spotify2019-830x350.jpg"
alt=""
/>
</div>
)
}

export default Login

0 comments on commit 2766cbd

Please sign in to comment.