import React from 'react'; import ModelImage from './PlanePreview'; import planes from './planes.json' const Home = () => { const favs = planes.filter(isFavPlane) .map(p => ); const all = planes .map(x => ); return (

Hugos Favoriten

{favs}

Alle Flugzeuge

{all}
); } function isFavPlane(plane) { return plane.tags.includes('fav'); } export default Home;