I am creating a gadget to get prices for dates, etc. using the Ryanair API.
I have a component that conditionally displays 2 other components based on whether there are flights per day or not, but it does not work.
import React from 'react'; import isFlight from './isFlight'; import noFlight from './noFlight'; function FlightCheck({isflight}){ if(isflight === true){ return <isFlight/>; } return <noFlight/>; } export default FlightCheck;
source share