forked from MohammadAkthamObeidat/Movies-Galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
React Components And Layout Intialized.
- Loading branch information
1 parent
a4cbb34
commit de38503
Showing
26 changed files
with
553 additions
and
28 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,26 +1,21 @@ | ||
import React from 'react'; | ||
import logo from './logo.svg'; | ||
import './App.css'; | ||
import React, { Component } from "react"; | ||
import "./Assets/CSS/App.css" | ||
import { BrowserRouter as Router, Switch, Route } from "react-router-dom"; | ||
class App extends Component { | ||
|
||
function App() { | ||
return ( | ||
<div className="App"> | ||
<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> | ||
// App State. | ||
state = { | ||
|
||
} | ||
|
||
// Rendering | ||
render() { | ||
return ( | ||
<div className="App"> | ||
Movies Galaxy React App | ||
</div> | ||
); | ||
); | ||
} | ||
} | ||
|
||
export default App; |
Empty file.
Oops, something went wrong.