35 lines
818 B
JavaScript
35 lines
818 B
JavaScript
//Modules
|
|
import React from 'react'
|
|
import { TouchableOpacity, Text, StyleSheet } from 'react-native';
|
|
|
|
//Components
|
|
import { DefaultLayout, Hero, } from '../index';
|
|
|
|
class Home extends React.Component {
|
|
render() {
|
|
return (
|
|
<DefaultLayout>
|
|
<Hero HeroHeading="AlfaPrentice" HeroText="De plek ow je ideale stageplek te vinden"/>
|
|
<TouchableOpacity style = {{ margin: 128 }} >
|
|
<Text>Terug naar login</Text>
|
|
</TouchableOpacity>
|
|
</DefaultLayout>
|
|
)
|
|
}
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
carousel: {
|
|
height: 200,
|
|
width: '100%',
|
|
},
|
|
container: {
|
|
width: 375,
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: 'transparent',
|
|
},
|
|
});
|
|
|
|
export default Home; |