mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
import type React from "react";
|
|
|
|
interface Props {
|
|
children: React.ReactNode;
|
|
}
|
|
export const OnboardingLayout = ({ children }: Props) => {
|
|
return <>{children}</>;
|
|
};
|