1
0
Fork 0
VaultUI/src/types/DefaultPageProps.ts

6 lines
144 B
TypeScript
Raw Normal View History

import { PageState } from "../state/PageState";
export type DefaultPageProps = {
state: PageState;
matches?: {[key: string]: string}
};