-
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.
- Loading branch information
1 parent
30ef201
commit 7232a06
Showing
13 changed files
with
38 additions
and
27 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 +1 @@ | ||
[{"D:\\programming\\projects\\Chat_Go\\client\\src\\reportWebVitals.js":"1"},{"size":362,"mtime":1606405189943,"results":"2","hashOfConfig":"3"},{"filePath":"4","messages":"5","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1eo9dih","D:\\programming\\projects\\Chat_Go\\client\\src\\reportWebVitals.js",[]] | ||
[{"D:\\programming\\projects\\Chat_Go\\client\\src\\reportWebVitals.js":"1","D:\\programming\\projects\\Chat_Go\\client\\src\\index.js":"2","D:\\programming\\projects\\Chat_Go\\client\\src\\App.js":"3","D:\\programming\\projects\\Chat_Go\\client\\src\\Containers\\Homepage.js":"4"},{"size":362,"mtime":1606405189943,"results":"5","hashOfConfig":"6"},{"size":500,"mtime":1606405189943,"results":"7","hashOfConfig":"6"},{"size":129,"mtime":1610362912173,"results":"8","hashOfConfig":"6"},{"size":179,"mtime":1610362822956,"results":"9","hashOfConfig":"6"},{"filePath":"10","messages":"11","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1eo9dih",{"filePath":"12","messages":"13","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"14","messages":"15","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"16","messages":"17","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"D:\\programming\\projects\\Chat_Go\\client\\src\\reportWebVitals.js",[],"D:\\programming\\projects\\Chat_Go\\client\\src\\index.js",[],"D:\\programming\\projects\\Chat_Go\\client\\src\\App.js",[],"D:\\programming\\projects\\Chat_Go\\client\\src\\Containers\\Homepage.js",[]] |
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
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,25 +1,7 @@ | ||
import logo from './logo.svg'; | ||
import './App.css'; | ||
|
||
import "./App.css"; | ||
import Homepage from "./Containers/Homepage"; | ||
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> | ||
</div> | ||
); | ||
return <Homepage />; | ||
} | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from "react"; | ||
|
||
export default function Loading() { | ||
return ( | ||
<div> | ||
<h1>Loading...</h1> | ||
</div> | ||
); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import React from "react"; | ||
import "../Styles/homepage.css"; | ||
export default function Homepage() { | ||
return ( | ||
<div> | ||
<h1>Welcome to Chat-GO</h1> | ||
</div> | ||
); | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log("hello"); |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
body { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
font-size: xx-large; | ||
background-color: #121212fa; | ||
} | ||
h1 { | ||
text-shadow: 2px 2px blueviolet; | ||
} |
Empty file.
This file was deleted.
Oops, something went wrong.