Skip to content

Commit 1412887

Browse files
authored
Merge pull request devlup-labs#105 from harshitsaini17/feature/folder-structure
Fix: modify folder structure
2 parents 62d1f1b + 3cbf6ad commit 1412887

File tree

23 files changed

+60
-24
lines changed

23 files changed

+60
-24
lines changed

frontend/.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.yarn/install-state.gz
8+
9+
# testing
10+
/coverage
11+
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
18+
19+
# misc
20+
.DS_Store
21+
*.pem
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# local env files
29+
.env*.local
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts

frontend/src/App.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import './App.css';
22
import { BrowserRouter, Route, Routes } from "react-router-dom";
3-
import Navbar from "./component/Navbar";
3+
import Navbar from "./components/Navbar";
44
import Home from "./pages/Home";
55
import Search from './pages/Search';
66
import { DataProvider } from './context/DataContext';
7-
import ImageTree from './pages/ImageTree';
7+
import ImageTree from './pages/3DTree';
88
import React, { useEffect, useState } from 'react';
99
import axios from 'axios';
1010
import { ToastContainer, toast } from 'react-toastify';
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)