import React from 'react'; // Import images import imgNormal from '../../../assets/wind_normal_to_ridge.png'; import imgParallel from '../../../assets/wind_parallel_to_ridge.png'; import imgTypical from '../../../assets/typical_wind_loading.png'; export const MwfrsDirectionalDiagram: React.FC = () => { return (
{/* Diagram 1: Wind Normal to Ridge */}
WIND NORMAL TO RIDGE
Wind Normal to Ridge
{/* Diagram 2: Wind Parallel to Ridge */}
WIND PARALLEL TO RIDGE
Wind Parallel to Ridge
{/* Diagram 3: Typical Wind Loading */}
TYPICAL WIND LOADING
Typical Wind Loading
); };