added the cable estimator and the pdf stuff that goes with it

This commit is contained in:
csawatzky 2025-04-09 14:49:04 -06:00
parent 9074120f74
commit e039a75bf8
26 changed files with 3157 additions and 24 deletions

View file

@ -0,0 +1,10 @@
import CableEstimator from "cableEstimator/cableEstimator";
import PageContainer from "./PageContainer";
export default function BinCableEstimator() {
return (
<PageContainer>
<CableEstimator />
</PageContainer>
);
}