import React from 'react'; import case1 from '../../../assets/mwfrs_case_1.png'; import case2 from '../../../assets/mwfrs_case_2.png'; import case3 from '../../../assets/mwfrs_case_3.png'; import case4 from '../../../assets/mwfrs_case_4.png'; export const WindDesignCasesDiagram: React.FC = () => { // Helper for a single Case Box const CaseBox = ({ title, img, formulas = [] }: { title: string, img: string, formulas?: string[] }) => (
{title}
{/*
{title}
*/} {formulas.map((f, i) =>
{f}
)}
); return (
Design Load Cases
NOTE: ASCE 7 requires the application of full and partial loading per the 4 cases below.
); };