Skip to content

Instantly share code, notes, and snippets.

@Klerith
Klerith / TrafficLight.tsx
Last active July 14, 2026 17:13
Diseño de un componente tipo semáforo
export const TrafficLight = () => {
return (
<div className="min-h-screen bg-gradient-to-br from-slate-900 via-gray-900 to-slate-800 flex items-center justify-center p-4">
<div className="flex flex-col items-center space-y-8">
<div className="w-32 h-32 bg-red-500 rounded-full"></div>
<div className="w-32 h-32 bg-yellow-500 rounded-full"></div>
@Klerith
Klerith / testing-configuration.md
Last active August 25, 2026 22:14
Configuración de Vitest + React Testing Library