Skip to content

Commit

Permalink
fix merging conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
jackie-ng committed Feb 2, 2022
2 parents c672cfe + b24b745 commit 7a7be47
Show file tree
Hide file tree
Showing 13 changed files with 464 additions and 332 deletions.
52 changes: 33 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@tailwindcss/forms": "^0.4.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
Expand Down
3 changes: 1 addition & 2 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.App {
display: flex;
}
.App .container{
.container{
flex-grow: 1;
padding: 0 60px;
}
6 changes: 4 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import SignIn from './components/Auth/SignIn';
import SignUp from './components/Auth/SignUp';
import Home from './components/Home';
import LandingPage from './components/LandingPage';
import HunterForm from './components/Auth/HunterForm';
import Navbar from './components/UI/Navbar';
import Footer from './components/UI/Footer';
import { useAuthContext } from './hooks/useAuthContext';
import EditProfile from './components/EditProfile';
import Dashboard from './components/Dashboard/Dashboard';
import OnlineUsers from './components/Users/OnlineUsers';
import CreateProject from './components/Dashboard/CreateProject';
Expand All @@ -30,6 +30,9 @@ function App() {
<Route exact path="/landing">
<LandingPage />
</Route>
<Route exact path="/editprofile">
<EditProfile />
</Route>
<Route exact path="/home">
{user ? <Home /> : <Redirect to="/signin" />}
</Route>
Expand All @@ -53,7 +56,6 @@ function App() {
{/* {user && <AllProjects />} */}
</Route>
</Switch>

</BrowserRouter>
)}
</div>
Expand Down
Loading

0 comments on commit 7a7be47

Please sign in to comment.