AuthenticationLayout.tsx 460 B

1234567891011121314
  1. import { PropsWithChildren } from 'react'
  2. import { AppBannerWrapper } from '@/components/interfaces/App/AppBannerWrapper'
  3. export const AuthenticationLayout = ({ children }: PropsWithChildren<{}>) => {
  4. return (
  5. <div className="flex flex-col min-h-screen w-screen">
  6. <AppBannerWrapper />
  7. <div className="flex flex-1 w-full overflow-y-hidden">
  8. <div className="grow h-full overflow-y-auto">{children}</div>
  9. </div>
  10. </div>
  11. )
  12. }