move move frontend to progress-test

This commit is contained in:
João Geonizeli
2022-07-21 21:16:59 -03:00
parent f8d5d08447
commit 386050d4ad
129 changed files with 159374 additions and 39 deletions

View File

@@ -0,0 +1,11 @@
import React, { FC } from "react";
export const Loading: FC = () => {
return (
<div className="grid h-screen w-screen bg-primary-dark place-items-center">
<div className="text-white text-lg">
Carregando...
</div>
</div>
)
}

View File

@@ -0,0 +1 @@
export * from './Loading'