summaryrefslogtreecommitdiff
path: root/src/modules/result/index.tsx
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-07-04 11:53:01 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-07-04 11:53:01 +0700
commit9a80c0a767c6a35a489b9d45654ae60f7ddc6794 (patch)
tree719161efc93b3abb408fa77d1d78e8193dc86df2 /src/modules/result/index.tsx
parenta711c3d7f3a41bb5ac20485723a0f629fbfde1b7 (diff)
<iman> update stock opname logic
Diffstat (limited to 'src/modules/result/index.tsx')
-rw-r--r--src/modules/result/index.tsx10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/modules/result/index.tsx b/src/modules/result/index.tsx
index cbb2173..095b4db 100644
--- a/src/modules/result/index.tsx
+++ b/src/modules/result/index.tsx
@@ -1,15 +1,17 @@
import { Spacer } from "@nextui-org/react"
import Filter from "./components/Filter"
-import styles from "./result.module.css"
import Table from "./components/Table"
import MoreMenu from "./components/MoreMenu"
+import { Suspense } from "react"
const Result = () => {
return (
<>
- <div className={styles.wrapper}>
- <div className={styles.title}>Stock Opname Result</div>
- <MoreMenu />
+ <div className="flex justify-between items-center">
+ <div className="font-semibold text-xl">Stock Opname Result</div>
+ <Suspense fallback={<div>Loading...</div>}>
+ <MoreMenu />
+ </Suspense>
</div>
<Spacer y={4} />
<Filter />