9 lines
No EOL
182 B
TypeScript
9 lines
No EOL
182 B
TypeScript
import { Stack } from 'expo-router'
|
|
|
|
function AboutLayout() {
|
|
return (
|
|
<Stack screenOptions={{ headerShown: true, title: "About" }} />
|
|
)
|
|
}
|
|
|
|
export default AboutLayout |