const Process = () => { return (

진행 프로세스

{['진단', '설계', '실행', '정착', '고도화'].map((step, index) => (
{index + 1}

{step}

))}
); }; export default Process;