세금계산서 리스트 및 상세

This commit is contained in:
focp212@naver.com
2025-09-25 14:01:03 +09:00
parent ba0b119e39
commit d5c12f4b69
34 changed files with 518 additions and 586 deletions

View File

@@ -26,10 +26,10 @@ export const EscrowInfoWrap = ({
const [isOpen, setIsOpen] = useState<boolean>(false);
const opeSection = () => {
const staus = !isOpen;
setIsOpen(staus);
if(!!staus){
const openSection = () => {
const status = !isOpen;
setIsOpen(status);
if(!!status){
setOpenChild(type);
}
else {
@@ -47,7 +47,7 @@ export const EscrowInfoWrap = ({
<>
<div className="section">
<div className="section-title"
onClick={ () => opeSection() }
onClick={ () => openSection() }
>
{ title } <SectionTitleArrow isOpen={ isOpen }></SectionTitleArrow>
</div>