add import messages/calls ui feedback

This commit is contained in:
m5r
2021-09-25 07:07:40 +08:00
parent 8f0a6f7060
commit 2f45e1d9a8
14 changed files with 153 additions and 16 deletions

View File

@ -14,9 +14,11 @@ const PhoneCalls: BlitzPage = () => {
<div className="flex flex-col space-y-6 py-3 pl-12">
<h2 className="text-3xl font-bold">Calls</h2>
</div>
<Suspense fallback="Loading...">
<PhoneCallsList />
</Suspense>
<section className="flex flex-grow flex-col">
<Suspense fallback="Loading...">
<PhoneCallsList />
</Suspense>
</section>
</>
);
};