Skip to content

Commit

Permalink
React Components And Layout Intialized.
Browse files Browse the repository at this point in the history
  • Loading branch information
MohammadAkthamObeidat committed Jan 17, 2020
1 parent a4cbb34 commit de38503
Show file tree
Hide file tree
Showing 26 changed files with 553 additions and 28 deletions.
138 changes: 138 additions & 0 deletions view/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions view/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^7.2.1",
"axios": "^0.19.1",
"bootstrap": "^4.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.0"
},
"scripts": {
Expand Down
37 changes: 16 additions & 21 deletions view/src/App.js
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 added view/src/Assets/CSS/App.css
Empty file.
Loading

0 comments on commit de38503

Please sign in to comment.