Adding the calculator base with types and the first calculator (CockCroft Gault Equation)

This commit is contained in:
2026-03-29 20:21:33 +05:30
parent 89e5faa659
commit 12ea537b79
3 changed files with 147 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { cockcroftGault } from "./miscellaneous/cockcroft-gault-eq";
import { Section } from "./types";
export const CalculatorRegistry : Record<string, Section> = {
miscellaneous:{
id:"miscellaneous",
displayName:"Miscellaneous",
textColor:"#ccc",
svg:"",
calculators:[
cockcroftGault
]
}
}