vendaweb-api/src/app/DRE/page.tsx

12 lines
231 B
TypeScript
Raw Normal View History

2025-10-08 04:19:15 +00:00
import Teste from './teste';
export default function DrePage() {
return (
<div className="flex flex-col items-center justify-center gap-2 max-w-10/12 mx-auto">
<h1>DRE-GERENCIAL</h1>
<Teste />
</div>
);
}