import Information from "./information"; import Location from "./location"; function Content({ doctor, step, setStep, children, isFirst, disableSide, selectedSlot, selectedDate, selectedLocation }) { return (
{isFirst ? ( ) : ( )} {children}
); } export default Content;