세금계산서 목록 및 상세 조회 기능 구현

This commit is contained in:
Jay Sheen
2025-09-24 09:53:09 +09:00
parent 9c84991e93
commit 32dec9af25
9 changed files with 150 additions and 40 deletions

View File

@@ -14,7 +14,6 @@ import {
export const InvoiceListPage = () => {
const { navigate } = useNavigate();
const [activeTab, setActiveTab] = useState<TaxTabKeys>(TaxTabKeys.InvoiceList);
useSetHeaderTitle('부가세 신고 자료');
useSetHeaderType(HeaderType.LeftArrow);
@@ -27,7 +26,7 @@ export const InvoiceListPage = () => {
<>
<main>
<div className="tab-content">
<div className="tab-pane sub active">
<div className="tab-pane pt-46 active">
<TaxTab activeTab={ activeTab }></TaxTab>
<InvoiceListWrap></InvoiceListWrap>
</div>