1import { JSX } from "react";
2import { ROUTES_KEYS } from "./pageLayout.constants";
3
4type TPageLayoutProps = {
5 className?: string;
6};
7
8type TStepKeys = (typeof ROUTES_KEYS)[number];
9type TRoutesLookup = Record<TStepKeys, JSX.Element>;
10
11export type { TPageLayoutProps, TRoutesLookup, TStepKeys };Powered by SnippSync • Always fresh, always in sync
Create snippets that automatically sync with your GitHub repositories. Never worry about outdated documentation again.