feat: Projekt von JavaScript zu TypeScript migriert

This commit is contained in:
Ismail Ali
2025-01-25 00:20:19 +01:00
parent fde7cf33c4
commit 4f809877ea
45 changed files with 579 additions and 291 deletions

View File

@@ -0,0 +1,15 @@
// components/CPLStatus.jsx
import React from "react";
const CPLStatus = () => {
return (
<div className="border border-gray-400 w-20 h-10 flex items-center justify-start bg-littwin-blue">
{/* Grüner Streifen auf der linken Seite */}
<div className=" left-0 top-0 h-full w-1/6 bg-green-500 mr-2"></div>
{/* Blauer Hauptbereich */}
<div className="text-white text-xs ">CPL</div>
</div>
);
};
export default CPLStatus;