Fixed location of pokemon card location
parent
610b501d9a
commit
65f0b56a20
|
@ -2,7 +2,7 @@ import React from 'react';
|
||||||
import './App.css';
|
import './App.css';
|
||||||
import { Header } from './Header';
|
import { Header } from './Header';
|
||||||
import { Filters } from './Filters';
|
import { Filters } from './Filters';
|
||||||
import { Pokemon } from './Pokemon';
|
import { Pokemon } from './features/Pokedex/Pokemon';
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -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 {
|
|
@ -1,6 +1,6 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import './Pokemon.css';
|
import './Pokemon.css';
|
||||||
import charizard from './assets/charizard.svg';
|
import charizard from '../../../assets/charizard.svg';
|
||||||
|
|
||||||
export function Pokemon() {
|
export function Pokemon() {
|
||||||
return (
|
return (
|
|
@ -0,0 +1 @@
|
||||||
|
export * from './Pokemon';
|
Loading…
Reference in New Issue