Skip to content

Commit

Permalink
clean up things
Browse files Browse the repository at this point in the history
  • Loading branch information
realjoshuau committed Nov 22, 2023
1 parent d5c7235 commit bd71cd3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
9 changes: 4 additions & 5 deletions apps/mobile/app/_layout.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { Text } from 'react-native';
import { SafeAreaProvider, SafeAreaView } from 'react-native-safe-area-context';
import { CalendarCheck, Clock, Gamepad2, Settings } from '@tamagui/lucide-icons';
import { Tabs } from 'expo-router/tabs';
import { StatusBar } from 'expo-status-bar';
import { TamaguiProvider } from 'tamagui';

import config from '../tamagui.config';
import { StatusBar } from 'expo-status-bar';
import { Tabs } from 'expo-router/tabs';
import { CalendarCheck, Clock, Gamepad2, Settings, User2 } from '@tamagui/lucide-icons';
export default function Page() {
return (
<>
Expand Down
3 changes: 1 addition & 2 deletions apps/mobile/app/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
// import { HomeIcon, HomeScreen } from '@acme/feature-home';
import { StatusBar } from 'expo-status-bar';
import { BarCodeScanner } from 'expo-barcode-scanner';
import { useEffect, useState } from 'react';
import { StyleSheet, View, Text, Image, Button } from 'react-native';
import { BarCodeScanner } from 'expo-barcode-scanner';
export default function App() {
const [hasPermission, setHasPermission] = useState(null);
const [scanned, setScanned] = useState(false);
Expand Down
7 changes: 4 additions & 3 deletions apps/mobile/app/scouting.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// import { HomeIcon, HomeScreen } from '@acme/feature-home';
import type { TeamEventResponse } from '@acme/tba/team';
import { StatusBar } from 'expo-status-bar';
import { useState } from 'react';
import { StyleSheet, View, Text } from 'react-native';
import { Button, Header } from 'tamagui';
import { Button } from 'tamagui';

import { API_URL } from '../constants';
import { useState } from 'react';
import type { TeamEventResponse } from '@acme/tba/team';

export default function App() {
// Pull the events from the API
Expand Down

0 comments on commit bd71cd3

Please sign in to comment.