Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4,849 changes: 4,823 additions & 26 deletions package-lock.json

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,22 @@
"@types/node": "^16.11.45",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"axios": "^0.27.2",
"bootstrap": "^5.2.0",
"font-awesome": "^4.7.0",
"node-sass": "^7.0.1",
"octokit": "^2.0.5",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the use of this?

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed

"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-paginate": "^8.1.3",
"react-redux": "^8.0.2",
"react-scripts": "5.0.1",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.1",
"sass": "^1.54.8",
"typescript": "^4.7.4",
"web-vitals": "^2.1.4"
},
Expand Down
9 changes: 0 additions & 9 deletions src/App.test.tsx

This file was deleted.

17 changes: 11 additions & 6 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
import React from 'react';
import './App.css';
import store,{persistor} from "./store";
import { Provider } from "react-redux";
import AppRoutes from "./routes"
import { PersistGate } from 'redux-persist/integration/react';

function App() {

return (
<div className="App">
<header className="App-header">
</header>
</div>
<Provider store={store}>
<PersistGate persistor={persistor}>
<AppRoutes/>
</PersistGate>
</Provider>
);
}

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/components/image/PngItem_1280311.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/components/image/undraw_add_friends_re_3xte.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/components/image/undraw_login_re_4vu2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/constants/constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export const EnterPersonalAccessToken = "Please enter your personal Access Token";
export const EnterUserName = "Please enter your username";

export const LOGIN_REQUEST = "LOGIN_REQUEST";
export const LOGIN_SUCCESS = "LOGIN_SUCCESS";
export const LOGIN_ERROR = "LOGIN_ERROR";
8 changes: 8 additions & 0 deletions src/containers/home/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// TODO: Add Home page UI
export const HomePage = () => {
return(
<div>
<h3>Home Page</h3>
</div>
)
}
Loading