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

10 lines
157 B
TypeScript
Raw Normal View History

2025-10-08 04:19:15 +00:00
import Teste from './teste';
export default function DrePage() {
return (
2025-10-08 12:55:48 +00:00
<div className="w-full min-h-screen p-1">
2025-10-08 04:19:15 +00:00
<Teste />
</div>
);
}