mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 13:13:25 +00:00
cleanup
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { FontAwesome } from '@expo/vector-icons';
|
||||
import Colors from '../constants/Colors';
|
||||
|
||||
import Colors from '@/constants/Colors';
|
||||
|
||||
type Props = {
|
||||
focused?: boolean;
|
||||
|
@@ -1,7 +1,7 @@
|
||||
import { Image, View } from 'react-native';
|
||||
import { Text } from '../../components/ui/Text';
|
||||
|
||||
import { TMDB_POSTER_PATH } from '../../constants/General';
|
||||
import { Text } from '@/components/ui/Text';
|
||||
import { TMDB_POSTER_PATH } from '@/constants/General';
|
||||
|
||||
export default function Item() {
|
||||
return (
|
||||
|
@@ -1,5 +1,6 @@
|
||||
import { View } from 'react-native';
|
||||
import { Text } from '../../components/ui/Text';
|
||||
|
||||
import { Text } from '@/components/ui/Text';
|
||||
|
||||
type Props = {
|
||||
title?: React.ReactNode | string;
|
||||
|
@@ -1,7 +1,7 @@
|
||||
import { cva } from 'class-variance-authority';
|
||||
import { Text as RNText, TextProps } from 'react-native';
|
||||
|
||||
import { cn } from '../../lib/utils';
|
||||
import { cn } from '@/lib/utils';
|
||||
|
||||
const textVariants = cva('text-white');
|
||||
|
||||
|
Reference in New Issue
Block a user