This repository has been archived on 2026-02-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
swift-duct-calc/Sources/ViewController/Views/FrictionRate/FrictionRateView.swift

15 lines
393 B
Swift

import Elementary
import ManualDCore
import Styleguide
struct FrictionRateView: HTML, Sendable {
var body: some HTML {
div(.class("w-full flex-1 p-4 space-y-6")) {
h1(.class("text-4xl font-bold pb-6")) { "Friction Rate" }
EquipmentInfoView(equipmentInfo: EquipmentInfo.mock)
ComponentPressureLossTable(componentPressureLosses: ComponentPressureLoss.mock)
}
}
}