25 lines
564 B
TypeScript
25 lines
564 B
TypeScript
import { HomeHeader } from "@/components/home-header";
|
|
import { ThemedView } from "@/components/themed-view";
|
|
import React from "react";
|
|
import { ScrollView, StyleSheet } from "react-native";
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<ThemedView style={styles.container}>
|
|
<HomeHeader />
|
|
<ScrollView contentContainerStyle={styles.content}>
|
|
{/* Placeholder for future content */}
|
|
</ScrollView>
|
|
</ThemedView>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
},
|
|
content: {
|
|
padding: 16,
|
|
},
|
|
});
|