import React from 'react';
import './index.less';
import Page from '@src/containers/Page';
import Assets from '@src/components/Assets';
import Tabs from '../../../components/Tabs';
export default class extends Page {
renderView() {
const { modal } = this.state;
return (
No.36
OG18 - Easy (21-40)
{this.renderContent()}
{modal ? this.renderModal() : ''}
);
}
renderContent() {
return (
{this.renderLeft()}
{this.renderRight()}
);
}
renderRight() {
return (
“Offering support services to spouses caring for their other halves may reduce martial stress and prevent
divorce at older ages,” she said. “But it’s also important to recognize that the pressure to divorce may be
health-related and that sick ex-wives may need additional care and services to prevent worsening health and
increased health costs.”
);
}
renderLeft() {
return 1
;
}
renderModal() {
const { modal } = this.state;
return (
{modal.title}
{modal.desc}
{modal.type === 'confirm' ? (
this.hideModal(true)}>
Yes
this.hideModal(false)}>
No
) : (
this.hideModal(true)}>
Ok
)}
);
}
}