refactor(app): split page orchestration flows
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { Suspense } from "react";
|
||||
|
||||
import { MobileShell } from "@/app/_components/core";
|
||||
import { PageLoadingFallback } from "@/app/_components/core";
|
||||
|
||||
import { SubscriptionPageClient } from "./subscription-page-client";
|
||||
|
||||
@@ -14,19 +14,6 @@ export default function SubscriptionPage() {
|
||||
|
||||
function SubscriptionFallback() {
|
||||
return (
|
||||
<MobileShell>
|
||||
<div
|
||||
style={{
|
||||
minHeight: "60vh",
|
||||
display: "flex",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
padding: "2rem",
|
||||
color: "#666",
|
||||
}}
|
||||
>
|
||||
Loading subscription...
|
||||
</div>
|
||||
</MobileShell>
|
||||
<PageLoadingFallback>Loading subscription...</PageLoadingFallback>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user