mirror of
https://github.com/DeveloLongScript/MHSF.git
synced 2026-05-07 20:35:06 -05:00
feat(support): put suspense border on page
This commit is contained in:
parent
66096cf833
commit
738de7b6ee
@ -1,5 +1,6 @@
|
|||||||
import { Support } from "@/components/feat/support/support";
|
import { Support } from "@/components/feat/support/support";
|
||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
|
import { Suspense } from "react";
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
applicationName: "MHSF",
|
applicationName: "MHSF",
|
||||||
@ -9,7 +10,9 @@ export const metadata: Metadata = {
|
|||||||
export default function SupportPage() {
|
export default function SupportPage() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<Support />
|
<Suspense>
|
||||||
|
<Support />
|
||||||
|
</Suspense>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user