diff --git a/navigation.js b/navigation.js index 66262f9..463fcc7 100644 --- a/navigation.js +++ b/navigation.js @@ -14,6 +14,8 @@ import {connect} from 'react-redux'; import i18n from "./src/services/i18n"; import {useTranslation} from "react-i18next"; import Profile from "./src/screens/Profile"; +import Videos from "./src/screens/Videos"; +import Exams from "./src/screens/Exams"; const mapStateToProps = state => { return { @@ -37,10 +39,10 @@ function BottomTab(props) { - - + + + ) +} + +export default Exams; diff --git a/src/screens/Videos/index.js b/src/screens/Videos/index.js new file mode 100644 index 0000000..e42b80d --- /dev/null +++ b/src/screens/Videos/index.js @@ -0,0 +1,13 @@ +import React from 'react' +import { View, Text } from 'react-native'; +import {connect} from 'react-redux'; + +function Videos({}) { + return ( + + + + ) +} + +export default Videos;