Commit 76b6aa6a authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Merge branch 'main' into 'main'

Se agrego la estructura de las fuentes de datos para los estados

See merge request pueblosmagicosconia!7
parents df88e389 07536f80
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2,3 +2,5 @@
/backend/.env
/web/node_modules
/mobile/node_modules
/mobile/.expo
/mobile/metro
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
@@ -2,5 +2,6 @@ module.exports = function(api) {
  api.cache(true);
  return {
    presets: ['babel-preset-expo'],
    plugins: ["nativewind/babel"],
  };
};
+471 −0

File changed.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Diff line number Diff line
@@ -11,12 +11,14 @@
  "dependencies": {
    "expo": "~50.0.11",
    "expo-status-bar": "~1.11.1",
    "nativewind": "^2.0.11",
    "react": "18.2.0",
    "react-native": "0.73.4"
  },
  "devDependencies": {
    "@babel/core": "^7.20.0",
    "@types/react": "~18.2.45",
    "tailwindcss": "^3.3.2",
    "typescript": "^5.1.3"
  },
  "private": true
+5 −0
Original line number Diff line number Diff line
import { StateEntity } from "../entities/state_entity";

export interface StateDataSource {
    getStates(): Promise<StateEntity[]>
}
 No newline at end of file
Loading