mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-11-15 21:43:45 +08:00
refactor: init switching to nextjs router
This commit is contained in:
4
app/(app)/settings/layout.tsx
Normal file
4
app/(app)/settings/layout.tsx
Normal file
@@ -0,0 +1,4 @@
|
||||
import React from "react";
|
||||
export default function Layout({ children }: { children: React.ReactNode }) {
|
||||
return <>{children}</>;
|
||||
}
|
||||
3
app/(app)/settings/page.tsx
Normal file
3
app/(app)/settings/page.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function Page() {
|
||||
return <></>;
|
||||
}
|
||||
Reference in New Issue
Block a user