13 lines
371 B
TypeScript
13 lines
371 B
TypeScript
|
import InternalAssetImagePage from "../../src/app/InternalAssetImagePage";
|
||
|
import type { NextPageWithLayout } from "../_app";
|
||
|
|
||
|
const InternalAssetImagePageWrapper: NextPageWithLayout = () => {
|
||
|
return <InternalAssetImagePage />;
|
||
|
};
|
||
|
|
||
|
InternalAssetImagePageWrapper.layoutComponent = ({ children }) => {
|
||
|
return children;
|
||
|
};
|
||
|
|
||
|
export default InternalAssetImagePageWrapper;
|