source: frontend/src/app/[locale]/layout.tsx

Last change on this file was b8093a0, checked in by imbrsk <boris696boris@…>, 4 days ago

Merge iknow-remaster into frontend/

Bring the Next.js frontend into this repository as a monorepo subdirectory,
preserving its full commit history via a subtree merge.

  • Property mode set to 100644
File size: 139 bytes
Line 
1import React from 'react';
2
3export default function LocaleLayout({ children }: { children: React.ReactNode }) {
4 return <>{children}</>;
5}
Note: See TracBrowser for help on using the repository browser.