refactor: polish the tailwind refactor

This commit is contained in:
Tristan Yang
2023-02-09 17:50:42 +08:00
parent 0b817773a0
commit 446e9a17d9
38 changed files with 80 additions and 70 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { ReactNode, Suspense, FC } from "react";
import { ReactNode, Suspense, FC } from "react";
import Loading from "../common/component/Loading";
type Props = {
@@ -7,7 +7,7 @@ type Props = {
const Lazy: FC<Props> = ({ children }) => {
return (
<Suspense fallback={<Loading />}>
<Suspense fallback={<Loading fullscreen={true} />}>
{children}
</Suspense>
);