import React from 'react' import {OrderSummary} from "./OrderSummary"; import {OrderForm} from "./OrderForm"; import {CrateList} from "./CrateList"; import {useShopStore} from "./shop_store"; import {ImportJSON} from "./ImportJSON"; import {RFQFeedback} from "./RFQFeedback"; // #!render_count import {useRenderCount} from "@uidotdev/usehooks"; /** * Component that renders all things for order. * It acts like-a layout, this component do nothing more. */ export function OrderPanel({title, description}) { // #!render_count const renderCount = useRenderCount(); const isMobile = useShopStore((state) => state.isMobile); const onClickToggleMobileSideMenu = useShopStore((state) => state.switchSideMenu); // #!render_count console.log("OrderPanel renders: ", renderCount) return (

{title}

{description}
{isMobile ? (
) : null}
); }