feat(silo adjustments): added in email if % wrong

This commit is contained in:
2025-04-06 07:47:39 -05:00
parent 85e3d46b2e
commit 95bebbde2b
10 changed files with 178 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
import { LstCard } from "@/components/extendedUI/LstCard";
import { CardHeader } from "@/components/ui/card";
export default function SiloCard(data: any) {
const silo = data.silo;
return (
<LstCard>
<CardHeader>{silo.Description}</CardHeader>
<div>
<hr />
</div>
</LstCard>
);
}