Skip to content

Commit

Permalink
refactor(layout): rename RootLayout to KeystaticLayout and simplify i…
Browse files Browse the repository at this point in the history
…ts structure (#95)
  • Loading branch information
y3owk1n authored Apr 10, 2024
1 parent 97a3b4a commit 61f40ee
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/app/(keystatic)/keystatic/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
import KeystaticApp from "./keystatic";

export default function RootLayout(): JSX.Element {
return (
<>
<head />
<body>
<KeystaticApp />
</body>
</>
);
export default function KeystaticLayout(): JSX.Element {
return <KeystaticApp />;
}

0 comments on commit 61f40ee

Please sign in to comment.