diff --git a/Native/AlfaPrentice/App/Layouts/DefaultLayout.js b/Native/AlfaPrentice/App/Layouts/DefaultLayout.js index 0f1ba05..8d56d3b 100644 --- a/Native/AlfaPrentice/App/Layouts/DefaultLayout.js +++ b/Native/AlfaPrentice/App/Layouts/DefaultLayout.js @@ -3,7 +3,7 @@ import React from 'react'; import {View, Text, ScrollView} from 'react-native'; //Components -import {Header, Footer} from '../index'; +import {Header, Footer, Hero} from '../index'; class DefaultLayout extends React.Component { constructor(props){ @@ -23,4 +23,23 @@ constructor(props){ } } -export default DefaultLayout; \ No newline at end of file +class UserProfileLayout extends React.Component { + constructor(props){ + super(props); + } + + render() { + return ( + + +
+ + {this.props.children} + +