impress-2020/pages/internal/assetImage.tsx
Matchu 1286b2e581 [WIP] Migrate /internal/assetImage to Next routing
This one is a bit trickier, because it doesn't use a page layout, and we had to make some fixes in OutfitMovieLayer! Nice to get a head-start on that though :3
2022-09-14 19:27:48 -07:00

12 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;