This commit is contained in:
Nilstrieb 2021-02-13 18:43:35 +01:00
parent 4e2d32cf04
commit 9bb74df734
6 changed files with 14 additions and 13 deletions

View file

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