Skip to content

Commit

Permalink
feat: template file init
Browse files Browse the repository at this point in the history
  • Loading branch information
rlarudgh committed Apr 9, 2024
1 parent 7a95fa3 commit 6fbfeb2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/app/template.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import '@/shared/styles/globals.css';
import type { ReactNode } from 'react';

interface Props {
children: ReactNode;
}

const Template = ({ children }: Readonly<Props>) => {
return <>{children}</>;
};

export default Template;

0 comments on commit 6fbfeb2

Please sign in to comment.