Skip to content

Commit

Permalink
[fix] updated imports
Browse files Browse the repository at this point in the history
  • Loading branch information
philipye315 committed Oct 9, 2024
1 parent fd25ca2 commit 3c0c547
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions App.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import * as React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import HealingResources from '@/HealingResources';
import Home from '@/Home';
import LegalRights from '@/LegalRights';
import SeekHelp from '@/SeekHelp';
import HealingResources from '@/screens/HealingResources';
import Home from '@/screens/Home';
import LegalRights from '@/screens/LegalRights';
import SeekHelp from '@/screens/SeekHelp';

const Stack = createNativeStackNavigator();

Expand Down
2 changes: 1 addition & 1 deletion src/screens/HealingResources/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect, useState } from 'react';
import { Button, View } from 'react-native';
import supabase from '../supabase/createClient';
import supabase from '../../supabase/createClient';

interface Resource {
summary: string;
Expand Down
2 changes: 1 addition & 1 deletion src/screens/SeekHelp/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect, useState } from 'react';
import { Button, Text, View } from 'react-native';
import supabase from '../supabase/createClient';
import supabase from '../../supabase/createClient';

interface Resource {
summary: string;
Expand Down

0 comments on commit 3c0c547

Please sign in to comment.