Skip to content

Commit 7232a06

Browse files
committed
folder structure created
1 parent 30ef201 commit 7232a06

File tree

13 files changed

+38
-27
lines changed

13 files changed

+38
-27
lines changed

client/.eslintcache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +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",[]]
1+
[{"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",[]]

client/public/favicon.ico

-3.78 KB
Binary file not shown.

client/public/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
5+
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
88
<meta
99
name="description"
10-
content="Web site created using create-react-app"
10+
content="A web based chat application with all features existing in modern day chat application with a new feature of scheduling messages"
1111
/>
12-
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
12+
1313
<!--
1414
manifest.json provides metadata used when your web app is installed on a
1515
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
@@ -24,7 +24,7 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27-
<title>React App</title>
27+
<title>Chat Go</title>
2828
</head>
2929
<body>
3030
<noscript>You need to enable JavaScript to run this app.</noscript>

client/public/logo192.png

-5.22 KB
Binary file not shown.

client/public/logo512.png

-9.44 KB
Binary file not shown.

client/src/App.js

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,7 @@
1-
import logo from './logo.svg';
2-
import './App.css';
3-
1+
import "./App.css";
2+
import Homepage from "./Containers/Homepage";
43
function App() {
5-
return (
6-
<div className="App">
7-
<header className="App-header">
8-
<img src={logo} className="App-logo" alt="logo" />
9-
<p>
10-
Edit <code>src/App.js</code> and save to reload.
11-
</p>
12-
<a
13-
className="App-link"
14-
href="https://reactjs.org"
15-
target="_blank"
16-
rel="noopener noreferrer"
17-
>
18-
Learn React
19-
</a>
20-
</header>
21-
</div>
22-
);
4+
return <Homepage />;
235
}
246

257
export default App;

client/src/Components/Loading.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from "react";
2+
3+
export default function Loading() {
4+
return (
5+
<div>
6+
<h1>Loading...</h1>
7+
</div>
8+
);
9+
}

client/src/Containers/Homepage.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from "react";
2+
import "../Styles/homepage.css";
3+
export default function Homepage() {
4+
return (
5+
<div>
6+
<h1>Welcome to Chat-GO</h1>
7+
</div>
8+
);
9+
}

client/src/Context/demo.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log("hello");

client/src/Routes/Routes.js

Whitespace-only changes.

0 commit comments

Comments
 (0)