This commit is contained in:
focp212@naver.com
2025-10-26 01:28:47 +09:00
parent 7e5f1e71a7
commit 00aec7656e
34 changed files with 930 additions and 319 deletions

View File

@@ -0,0 +1,14 @@
import { Route } from 'react-router-dom';
import { SentryRoutes } from '@/shared/configs/sentry';
import { ROUTE_NAMES } from '@/shared/constants/route-names';
import { SamplePage } from './sample/sample-page';
export const VatReturnPages = () => {
return (
<>
<SentryRoutes>
<Route path={ROUTE_NAMES.taxInvoice.sample} element={<SamplePage />} />
</SentryRoutes>
</>
);
};