ResultForOk.js 816 Bytes
import React from 'react'
import Button from './Button';

const ResultForOk = () => {
    return (
        <div>
            <img src="https://ibb.co/Xkm3JPK"
                width='auto'
                height='500px'
                alt='resultImg'
            />
            <img src="https://ibb.co/Xkm3JPK" alt="test" />
            <h1>분석 결과 : 정상</h1>
            <p>아주 건강한 자세를 유지하고 계시네요!</p>
            <p>지금처럼 건강한 자세를 유지하는데 도움이  스트레칭을 추천해드릴게요!</p>
            <a href="http://bakc.net/health/main/index.php?m_cd=109" target="blank">http://bakc.net/health/main/index.php?m_cd=109</a>
            <Button btnText="Try Again" />
        </div>
    )
}

export default ResultForOk;