import React from 'react'; import {Cart} from "./Cart"; import {CrateMode} from "./CrateMode"; import {CrateWarnings} from "./CrateWarnings"; import {useShopStore} from "./shop_store"; /** * Component that displays the main crate with reminder rules. * It includes and rules */ export function Crate({crate_index}) { const { onDeleteCrate, crate } = useShopStore(state => ({ onDeleteCrate: state.delCrate, crate: state.crates[crate_index] })) return (
onDeleteCrate(crate.id)}> Delete crate remove
); }