Skip to content

Commit

Permalink
Merge branch 'main' into 1-log-in-system
Browse files Browse the repository at this point in the history
  • Loading branch information
201flaviosilva committed Apr 12, 2023
2 parents 6b263f5 + 1f30b3f commit 58db9e3
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 6 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
2 changes: 1 addition & 1 deletion src/app/store.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { configureStore } from "@reduxjs/toolkit";
import usersReducer from "../actions/users";
import counterReducer from "../Components/Counter/state";
import counterReducer from "../components/Counter/state";

export const store = configureStore({
reducer: {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Pages/Home/index.tsx → src/pages/Home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Counter from "../../Components/Counter";
import Counter from "../../components/Counter";

export default function Home() {
return (
Expand Down
File renamed without changes.

0 comments on commit 58db9e3

Please sign in to comment.