18 lines
411 B
TypeScript
18 lines
411 B
TypeScript
import { Receipt } from 'lucide-react';
|
|
import ETCView from './ETCView';
|
|
import { PageFrame } from '../../components/ui/surface';
|
|
|
|
export default function EtcModule() {
|
|
return (
|
|
<PageFrame
|
|
title="ETC 通行费看板"
|
|
subtitle="通行明细、账单与回款状态"
|
|
icon={Receipt}
|
|
eyebrow="ETC BI"
|
|
meta="通行明细 · 账单"
|
|
>
|
|
<ETCView />
|
|
</PageFrame>
|
|
);
|
|
}
|