import { useState } from "react"; import GenericBox from "../../ui/GenericBox"; import { URL_RADIO_DATA } from "./../../constants/photo"; import { useSharedState } from "../../store/useSharedState"; import GenericRadioGroup from "./../../ui/GenericRadioGroup"; import { Divider } from "@mui/material"; function PhotoGenericOptions() { const [urlPoint, setUrlPoint] = useState("single"); const setPreviewMode = useSharedState((state) => state.setPreviewMode); const handleUrlRadioChange = (event) => { setUrlPoint(event.target.value); setPreviewMode(event.target.value === "rwd" ? "desktop" : "single"); }; return ( Labelki Opinie Dodaj do koszyka ); } export default PhotoGenericOptions;