12 lines
231 B
TypeScript
12 lines
231 B
TypeScript
|
|
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>
|
||
|
|
);
|
||
|
|
}
|