Files
physical-expo/app/(tabs)/index.tsx
2026-01-12 15:31:47 +08:00

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,
},
});