Co-authored-by: Greg Pabian <35925521+grzpab@users.noreply.github.com> Co-authored-by: Benny Joo <sldisek783@gmail.com> Co-authored-by: zomars <zomars@me.com>
8 lines
340 B
TypeScript
8 lines
340 B
TypeScript
import Page from "@pages/getting-started/[[...step]]";
|
|
import { withAppDirSsr } from "app/WithAppDirSsr";
|
|
import { WithLayout } from "app/layoutHOC";
|
|
|
|
import { getServerSideProps } from "@lib/getting-started/[[...step]]/getServerSideProps";
|
|
|
|
export default WithLayout({ getLayout: null, getData: withAppDirSsr(getServerSideProps), Page });
|