impress-2020/pages/internal/assetImage.tsx

13 lines
371 B
TypeScript
Raw Normal View History

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