chore: application prettier

This commit is contained in:
Luc SORIGNET
2025-04-15 19:37:47 +02:00
parent dd0884bbce
commit f7666c894b
174 changed files with 10609 additions and 8760 deletions

View File

@ -1,10 +1,17 @@
import React from 'react';
const RadioList = ({ items, formData, handleChange, fieldName, icon: Icon, className }) => {
const RadioList = ({
items,
formData,
handleChange,
fieldName,
icon: Icon,
className,
}) => {
return (
<div className={`mb-4 ${className}`}>
<div className="grid grid-cols-1 gap-4">
{items.map(item => (
{items.map((item) => (
<div key={item.id} className="flex items-center">
<input
key={`${item.id}-${Math.random()}`}