Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
YuvarajPujari committed Sep 8, 2024
0 parents commit 146f12f
Show file tree
Hide file tree
Showing 99 changed files with 10,466 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["react-app", "react-app/jest"]
}
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# React + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
40 changes: 40 additions & 0 deletions data/cities.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"cities": [
{
"id": "02bc",
"cityName": "Valderrobres",
"country": "Spain",
"emoji": "🇪🇸",
"date": "2024-08-28T22:04:42.043Z",
"notes": "",
"position": {
"lat": "40.94437226223041",
"lng": "0.1514346997299221"
}
},
{
"id": "1284",
"cityName": "Lles de Cerdanya",
"country": "Spain",
"emoji": "🇪🇸",
"date": "2024-08-31T20:19:27.991Z",
"notes": "",
"position": {
"lat": "42.4873607354165",
"lng": "1.689796671418309"
}
},
{
"id": "9f3d",
"cityName": "La Puebla de Valverde",
"country": "Spain",
"emoji": "🇪🇸",
"date": "2024-09-02T18:20:45.956Z",
"notes": "loved it",
"position": {
"lat": "40.212440718286466",
"lng": "-0.9458179418281643"
}
}
]
}
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>World-Wise</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
2 changes: 2 additions & 0 deletions info.text
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
index route what we want to shouw intially when the app componet loads basically routes
outlet shows the index route
Loading

0 comments on commit 146f12f

Please sign in to comment.