plane hugo

This commit is contained in:
Nilstrieb 2021-02-13 17:53:47 +01:00
parent ec7929a9ba
commit ea8fe969a4
7 changed files with 190 additions and 131 deletions

View file

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