add storage to store column defs on the table

This commit is contained in:
anovazzi1 2024-06-10 18:01:37 -03:00
commit bd04259b00

View file

@ -0,0 +1,9 @@
import Loading from "../../../ui/loading";
export default function LoadingOverlay() {
return (
<div className=" flex h-full w-full items-center justify-center bg-background align-middle">
<Loading />
</div>
);
}