Skip to content

Commit

Permalink
Create layout.tsx
Browse files Browse the repository at this point in the history
Co-Authored-By: Tim Neutkens <[email protected]>
  • Loading branch information
haydenbleasel and timneutkens committed Nov 13, 2024
1 parent 0b7622f commit e97d0de
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions apps/api/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { ReactNode } from 'react';

type RootLayoutProperties = {
readonly children: ReactNode;
};

const RootLayout = ({ children }: RootLayoutProperties) => (
<html lang="en">
<body>{children}</body>
</html>
);

export default RootLayout;

0 comments on commit e97d0de

Please sign in to comment.