Matchu
1286b2e581
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
12 lines
371 B
TypeScript
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;
|