Skip to content

Commit

Permalink
fix: import
Browse files Browse the repository at this point in the history
  • Loading branch information
iqbalpa committed Jul 11, 2024
1 parent 1d95688 commit cd68e88
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/backdrop/backdrop.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Movie } from '@/constant/movie';
import React, { useState } from 'react';
import Image from 'next/image';
import { Skeleton } from '../ui/skeleton';
import { Skeleton } from '@/components/ui/skeleton';

interface IBackdrop {
movie: Movie;
Expand Down
2 changes: 1 addition & 1 deletion src/components/card/Card.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react';
import Image from 'next/image';
import { Movie } from '@/constant/movie';
import { Skeleton } from '../ui/skeleton';
import { Skeleton } from '@/components/ui/skeleton';
import Link from 'next/link';

interface ICard {
Expand Down
2 changes: 1 addition & 1 deletion src/components/listMovies/listMovies.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import Image from 'next/image';
import { Movie } from '@/constant/movie';
import Card from '../card/card';
import Card from '@/components/card/card';

interface IListMovies {
movies: Movie[];
Expand Down
2 changes: 1 addition & 1 deletion src/components/topCast/topCast.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import Image from 'next/image';
import { Cast } from '@/constant/detailMovie';
import CastCard from '../castCard/castCard';
import CastCard from '@/components/castCard/castCard';

interface ITopCast {
cast: Cast[];
Expand Down

0 comments on commit cd68e88

Please sign in to comment.