10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
|
|
export const metadata = {
|
||
|
|
title: "Appex Boxplot Chart",
|
||
|
|
};
|
||
|
|
|
||
|
|
const Layout = ({ children }: { children: React.ReactNode }) => {
|
||
|
|
return <>{children}</>;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Layout;
|