-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
36 lines (32 loc) · 1.44 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { Route, Routes } from 'react-router-dom';
import './App.css';
import React from 'react';
import MenuPrincipal from './components/MenuPrincipal2';
import RegistroCaficultor from './components/RegistroCaficultor';
import AnalisisFisicoPage from './components/AnalisisFisico';
import Catacion from './components/Catacion';
import RegistroLote from './components/RegistroLote'
import PruebaTwilio from './components/PruebaTwilio';
import SobreNosotros from './components/SobreNosotros';
import EnviarAnalisis from './components/EnviarAnalisis';
import { createLote } from './components/LoteInfo';
import { Lote } from './components/MyTypes';
const miLote:Lote = createLote()
function App() {
return (
<div className="App">
<Routes>
<Route path="/" element={<MenuPrincipal />}></Route>
<Route path="SobreNosotros" element={<SobreNosotros />}></Route>
<Route path='RegistroCaficultor/' element={<RegistroCaficultor />}></Route>
<Route path='AnalisisFisico/' element={<AnalisisFisicoPage />}></Route>
<Route path="catacion/" element={<Catacion />} />
<Route path='RegistroCaficultor/:siguiente' element={<RegistroCaficultor />}></Route>
<Route path='RegistroLote/' element={<RegistroLote />}></Route>
<Route path='enviarAnalisis/' element={<EnviarAnalisis />}></Route>
<Route path="prueba" element={<PruebaTwilio />}> </Route>
</Routes>
</div>
);
}
export default App;