Fix relative import
This commit is contained in:
parent
8a54245ecb
commit
1c279f4efb
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import logo from '../assets/poke_logo.png';
|
import logo from 'assets/poke_logo.png';
|
||||||
|
|
||||||
const Header = () => {
|
const Header = () => {
|
||||||
return (
|
return (
|
||||||
|
@ -4,7 +4,7 @@ import Loading from 'components/Loading';
|
|||||||
|
|
||||||
import { useAppSelector, useAppDispatch } from 'app/hooks';
|
import { useAppSelector, useAppDispatch } from 'app/hooks';
|
||||||
import { fetchPokemonsInTheRegion } from './pokedexSlice';
|
import { fetchPokemonsInTheRegion } from './pokedexSlice';
|
||||||
import { fetchSelectedPokemonInfo } from '../InfoDialog/infoDialogSlice';
|
import { fetchSelectedPokemonInfo } from 'features/InfoDialog/infoDialogSlice';
|
||||||
|
|
||||||
export const filterPokemonCardsByType = (
|
export const filterPokemonCardsByType = (
|
||||||
pokemonList: PokemonCardProps[],
|
pokemonList: PokemonCardProps[],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user