6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
|
import { PageState } from "../state/PageState";
|
||
|
|
||
|
export type DefaultPageProps = {
|
||
|
state: PageState;
|
||
|
matches?: {[key: string]: string}
|
||
|
};
|