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

@ -2,8 +2,8 @@ import React from 'react';
const LevelLabel = ({ label, index }) => {
return (
<div
key={index}
<div
key={index}
className={`ml-2 px-3 py-1 rounded-md shadow-sm ${
index % 2 === 0 ? 'bg-white' : 'bg-gray-100'
} border border-gray-200 text-gray-700`}

View File

@ -2,13 +2,15 @@ import React from 'react';
const TeacherLabel = ({ nom, prenom, index }) => {
return (
<div
key={index}
<div
key={index}
className={`ml-2 px-3 py-1 rounded-md shadow-sm ${
index % 2 === 0 ? 'bg-white' : 'bg-gray-100'
} border border-gray-200 text-gray-700`}
>
<span className="font-bold">{nom} {prenom}</span>
<span className="font-bold">
{nom} {prenom}
</span>
</div>
);
};