This commit is contained in:
Nilstrieb 2021-02-13 18:14:25 +01:00
parent ea8fe969a4
commit 4e2d32cf04
6 changed files with 6 additions and 7 deletions

View file

@ -1,15 +1,13 @@
import React, {Component} from "react";
import ModelImage from "./Plane";
import f22 from './img/raptor-1040097_1920.png'
import f22 from './img/f22.png'
class Home extends Component {
render() {
return (
<div>
<h1>Hugos Favoriten</h1>
<ul>
<li><ModelImage img={f22} name="F-22 Raptor"/></li>
</ul>
<ModelImage img={f22} name="F-22 Raptor"/>
</div>
)
}