fix: add use-client and export dynamic

This commit is contained in:
ValdiANS
2025-12-10 18:09:30 +07:00
parent 280fffe6a5
commit 720ff2128f
+5
View File
@@ -1,3 +1,5 @@
'use client';
import MarketingTable from '@/components/pages/marketing/MarketingTable';
const Marketing = () => {
@@ -7,4 +9,7 @@ const Marketing = () => {
</div>
);
};
export const dynamic = 'force-static';
export default Marketing;