Fixed location of pokemon card location
parent
610b501d9a
commit
65f0b56a20
|
@ -2,7 +2,7 @@ import React from 'react';
|
|||
import './App.css';
|
||||
import { Header } from './Header';
|
||||
import { Filters } from './Filters';
|
||||
import { Pokemon } from './Pokemon';
|
||||
import { Pokemon } from './features/Pokedex/Pokemon';
|
||||
|
||||
function App() {
|
||||
return (
|
||||
|
|
|
@ -28,7 +28,7 @@ html {
|
|||
|
||||
@font-face {
|
||||
font-family: 'Press Start 2P';
|
||||
src: url('assets/PressStart2P-Regular.ttf') format('truetype');
|
||||
src: url('../../../assets/PressStart2P-Regular.ttf') format('truetype');
|
||||
}
|
||||
|
||||
.thumbnail__container {
|
|
@ -1,6 +1,6 @@
|
|||
import React from 'react';
|
||||
import './Pokemon.css';
|
||||
import charizard from './assets/charizard.svg';
|
||||
import charizard from '../../../assets/charizard.svg';
|
||||
|
||||
export function Pokemon() {
|
||||
return (
|
|
@ -0,0 +1 @@
|
|||
export * from './Pokemon';
|
Loading…
Reference in New Issue