Skip to content

Commit

Permalink
[merge] main into charlottes branch
Browse files Browse the repository at this point in the history
  • Loading branch information
philipye314 committed Nov 20, 2024
2 parents f2426e4 + 9a26c53 commit a419811
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
11 changes: 11 additions & 0 deletions src/navigation/MainNavigator.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import BottomTabNavigator from './BottomTabNavigator';

export default function AppNavigator() {
return (
<NavigationContainer>
<BottomTabNavigator />
</NavigationContainer>
);
}
5 changes: 5 additions & 0 deletions src/screens/HealingResources/ThemedHealing/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { Text } from 'react-native';

export default function ThemedHealingScreen() {
return <Text>themed healing screen!</Text>;
}
5 changes: 5 additions & 0 deletions src/screens/LegalRights/LegalRightsScreen.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { Text } from 'react-native';

export default function HealingResources() {
return <Text>HELLO this is legal rights</Text>;
}
2 changes: 1 addition & 1 deletion src/types/types.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export interface Resource {
summary: string;
[key: string]: any;
[key: string]: string;
}

export type HealingResource = {
Expand Down

0 comments on commit a419811

Please sign in to comment.