Skip to content

Commit

Permalink
folder structure created
Browse files Browse the repository at this point in the history
  • Loading branch information
amohapatra123 committed Jan 11, 2021
1 parent 30ef201 commit 7232a06
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 27 deletions.
2 changes: 1 addition & 1 deletion client/.eslintcache
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 removed client/public/favicon.ico
Binary file not shown.
8 changes: 4 additions & 4 deletions client/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />

<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
content="A web based chat application with all features existing in modern day chat application with a new feature of scheduling messages"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />

<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand All @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>Chat Go</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file removed client/public/logo192.png
Binary file not shown.
Binary file removed client/public/logo512.png
Binary file not shown.
24 changes: 3 additions & 21 deletions client/src/App.js
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;
9 changes: 9 additions & 0 deletions client/src/Components/Loading.js
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>
);
}
9 changes: 9 additions & 0 deletions client/src/Containers/Homepage.js
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>
);
}
1 change: 1 addition & 0 deletions client/src/Context/demo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("hello");
Empty file added client/src/Routes/Routes.js
Empty file.
11 changes: 11 additions & 0 deletions client/src/Styles/homepage.css
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 added client/src/Utils/demo.js
Empty file.
1 change: 0 additions & 1 deletion client/src/logo.svg

This file was deleted.

0 comments on commit 7232a06

Please sign in to comment.