mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-26 17:45:49 +02: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}</>;
|
|
};
|