Complete and working implementation of renderCalc.tsx | v1.0

This commit is contained in:
2026-03-30 23:29:24 +05:30
parent bb746ee8f6
commit 5a63ee26e6
8 changed files with 161 additions and 68 deletions

View File

@@ -8,7 +8,11 @@ export default function Section({sectionName, Calculators, id} : {sectionName:st
<ul>
{Calculators.map((e) => {
return(
<li><a key={e.id} href={`/calculate/${id}/${e.id}`}>{e.name}</a></li>
<li key={e.id}>
<a href={`/calculate/${id}/${e.id}`}>
{e.name}
</a>
</li>
)
})}
</ul>