ResultForOk.js
826 Bytes
import React from 'react'
import RetryBtn from './RetryBtn';
import '../style/ResultContent.css';
const ResultForOk = () => {
return (
<div className="resultContainer">
<div className="resultPhoto Ok">
</div>
<div className="resultTextContainer">
<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>
<RetryBtn btnText="Try Again" />
</div>
</div>
)
}
export default ResultForOk;