Skip to content

Commit

Permalink
Fix build step
Browse files Browse the repository at this point in the history
  • Loading branch information
arkadiuszbachorski committed Jun 14, 2024
1 parent bf97a38 commit 7279384
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion app/sign-in/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
//
// SPDX-License-Identifier: MIT
//
import { type ReactNode } from 'react'
import { AsideEngageLayout } from '../../components/AsideEngageLayout'

export default AsideEngageLayout
interface SignInLayoutProps {
children?: ReactNode
}

const SignInLayout = (props: SignInLayoutProps) => (
<AsideEngageLayout {...props} />
)

export default SignInLayout

0 comments on commit 7279384

Please sign in to comment.