Skip to content

Commit

Permalink
moved nextjs app to client folder under packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Oba-One committed Apr 26, 2024
1 parent 70a1569 commit 4a63d81
Show file tree
Hide file tree
Showing 17 changed files with 4 additions and 1 deletion.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 4 additions & 1 deletion app/page.tsx → packages/client/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import { NextPage } from "next";
import dynamic from "next/dynamic";
const AdminApp = dynamic(() => import("@/components/AdminApp"), { ssr: false });

const AdminApp = dynamic(() => import("@/app/components/AdminApp"), {
ssr: false,
});

const Home: NextPage = () => <AdminApp />;

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.

0 comments on commit 4a63d81

Please sign in to comment.