17 lines
No EOL
420 B
TypeScript
17 lines
No EOL
420 B
TypeScript
import React from 'react';
|
|
|
|
interface OnboardingLayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
const OnboardingLayout: React.FC<OnboardingLayoutProps> = ({ children }) => {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50">
|
|
<div className="max-w-lg w-full bg-white rounded-lg shadow-md p-8">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default OnboardingLayout; |