import React from 'react'; import {SummaryCrates} from "./SummaryCrates"; import {SummaryTotalPrice} from "./SummaryTotalPrice"; // #!render_count import {useRenderCount} from "@uidotdev/usehooks"; /** * Components that displays the list of card that are used in the crate. * It is a summary of purchase */ export function SummaryOrder() { // #!render_count const renderCount = useRenderCount(); // #!render_count console.log("SummaryOrder renders: ", renderCount) return (
Price estimate  
); }