11 lines
177 B
TypeScript
11 lines
177 B
TypeScript
import React from "react";
|
|
|
|
function IntegrationLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <div>{children}</div>;
|
|
}
|
|
|
|
export default IntegrationLayout; |