diff --git a/App.tsx b/App.tsx
index 2c1be27..40949c4 100644
--- a/App.tsx
+++ b/App.tsx
@@ -1,19 +1,16 @@
+import 'react-native-gesture-handler';
import * as React from 'react';
import {StyleSheet, View, Platform, SafeAreaView} from 'react-native';
import {BigbluebuttonMobile} from 'bigbluebutton-mobile-sdk';
import { Bootstrap } from './react-native/bootstrap/start/component';
+import { Routes } from './react-native/app/routes/component';
export default function App() {
return (
-
- {/* */}
-
-
+ <>
+
+ >
);
}
diff --git a/react-native/app/pages/list_portals/component.js b/react-native/app/pages/list_portals/component.js
new file mode 100644
index 0000000..7050705
--- /dev/null
+++ b/react-native/app/pages/list_portals/component.js
@@ -0,0 +1,12 @@
+import React from 'react'
+import { Text, View } from 'react-native';
+
+export const ListPortals = ()=>{
+ return (
+ <>
+
+ List
+
+ >
+ )
+}
\ No newline at end of file
diff --git a/react-native/app/routes/component.js b/react-native/app/routes/component.js
new file mode 100644
index 0000000..de02eef
--- /dev/null
+++ b/react-native/app/routes/component.js
@@ -0,0 +1,37 @@
+import * as React from 'react';
+import { Button, View } from 'react-native';
+import { createDrawerNavigator } from '@react-navigation/drawer';
+import { NavigationContainer } from '@react-navigation/native';
+import { ListPortals } from '../pages/list_portals/component';
+
+function NotificationsScreen({ navigation }) {
+ return (
+
+
+ );
+}
+
+function Test(){
+ return (
+
+
+
+ )
+}
+
+const Drawer = createDrawerNavigator();
+export const Routes = ()=>{
+ return (
+
+
+
+
+
+ {['1','2'].map((item)=>{
+ return
+ })}
+
+
+ );
+}
\ No newline at end of file
diff --git a/react-native/bootstrap/start/component.js b/react-native/bootstrap/start/component.js
index 627d283..03db78a 100644
--- a/react-native/bootstrap/start/component.js
+++ b/react-native/bootstrap/start/component.js
@@ -1,14 +1,16 @@
import React from 'react'
import { Text, View } from 'react-native'
import { GestureHandlerRootView } from 'react-native-gesture-handler'
+import { Routes } from '../../app/routes/component';
+
+//This archive is used to envolve app in contexts, libs, etc..
export const Bootstrap = ()=>{
return (
<>
-
- Bootstrap
-
+ a
+
>
)