Skip to content

Commit

Permalink
organize project
Browse files Browse the repository at this point in the history
  • Loading branch information
201flaviosilva committed Apr 12, 2023
1 parent 75de6f3 commit aef2eee
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 76 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"redux": "^4.2.1"
},
"devDependencies": {
"@types/react": "^18.0.34",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/react-redux": "^7.1.25",
"@typescript-eslint/eslint-plugin": "^5.58.0",
Expand Down
6 changes: 3 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { Provider } from "react-redux";
import { BrowserRouter, Route, Routes } from "react-router-dom";
import "./App.css";
import { store } from "./app/store";
import Account from "./Pages/Account";
import Home from "./Pages/Home";
import NotFound from "./Pages/NotFound";
import Account from "./pages/Account";
import Home from "./pages/Home";
import NotFound from "./pages/NotFound";

export default function App() {
return (
Expand Down
19 changes: 0 additions & 19 deletions src/Components/Counter/index.tsx

This file was deleted.

32 changes: 0 additions & 32 deletions src/Components/Counter/state.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions src/Pages/Account/index.tsx

This file was deleted.

10 changes: 0 additions & 10 deletions src/Pages/Home/index.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions src/Pages/NotFound/index.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/app/store.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { configureStore } from "@reduxjs/toolkit";
import counterReducer from "../Components/Counter/state";
import counterReducer from "../components/Counter/state";

export const store = configureStore({
reducer: {
Expand Down

0 comments on commit aef2eee

Please sign in to comment.