-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
803f185
commit 206e67d
Showing
2 changed files
with
17 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,18 @@ | ||
import React from 'react'; | ||
import React, {Component} from 'react'; | ||
//import logo from './logo.svg'; | ||
import Background from './LandingPage/Background/Background'; | ||
import './App.css'; | ||
|
||
|
||
function App() { | ||
return ( | ||
<div className="App"> | ||
<Background/> | ||
{/*<header className="App-header"> | ||
<img src={logo} className="App-logo" alt="logo" /> | ||
<p> | ||
Edit <code>src/App.js</code> and save to reload. | ||
</p> | ||
<a | ||
className="App-link" | ||
href="https://reactjs.org" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
Learn React | ||
</a> | ||
</header>*/} | ||
</div> | ||
); | ||
class App extends Component { | ||
render() { | ||
return ( | ||
<div className="App"> | ||
<Background/> | ||
</div> | ||
); | ||
} | ||
|
||
} | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters