import React from "react"; import styles from "../style"; const StepOneJoblisting = ({ nextStep, handleChange, formData }) => { // Funkcja do obsługi kliknięcia na div i aktualizacji stanu const handleDivClick = (value) => () => { handleChange("posting_option")({ target: { value: value } }); }; const activeStyle = "h-[500px] w-64 border-4 rounded-xl border-stone-200 bg-gray-200 div-transition scale-125"; const inactiveStyle = "h-[500px] w-64 rounded-xl bg-gray-200 border-gray-200 div-transition cursor-pointer hover:bg-gray-300"; return ( <>

Zacznij dodawać ogłoszenie z izaac.pl

Wybierz pakiet najlepiej odpowiadający Twoim potrzebom

{/* Przykładowe divy jako przyciski wyboru */}

Starter

Standard

najczęsciej wybierany

Premium

); }; export default StepOneJoblisting;