Move PokemonCard component into component directory
parent
ce3d3ce0d7
commit
92d3428c84
|
@ -28,7 +28,7 @@ html {
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Press Start 2P';
|
font-family: 'Press Start 2P';
|
||||||
src: url('../../../assets/PressStart2P-Regular.ttf') format('truetype');
|
src: url('../../assets/PressStart2P-Regular.ttf') format('truetype');
|
||||||
}
|
}
|
||||||
|
|
||||||
.thumbnail__container {
|
.thumbnail__container {
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
|
@ -1,5 +1,5 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import PokemonCard, { PokemonCardProps } from './PokemonCard';
|
import PokemonCard, { PokemonCardProps } from 'components/PokemonCard';
|
||||||
import Filters from './Filters';
|
import Filters from './Filters';
|
||||||
import Loading from 'components/Loading';
|
import Loading from 'components/Loading';
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { PokemonResponseData } from './api';
|
import { PokemonResponseData } from './api';
|
||||||
import { PokemonCardProps } from '../PokemonCard';
|
import { PokemonCardProps } from 'components/PokemonCard';
|
||||||
|
|
||||||
export type PokedexState = {
|
export type PokedexState = {
|
||||||
regionOptions: RegionPokemonRange[];
|
regionOptions: RegionPokemonRange[];
|
||||||
|
|
Loading…
Reference in New Issue