forked from 77media/video-flow
15 lines
223 B
TypeScript
15 lines
223 B
TypeScript
'use client';
|
|
|
|
import React from 'react';
|
|
|
|
export default function SignupLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<div className="bg-black min-h-screen">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|