react-native-twopane-navigation
Version:
React Native package for dual screen devices navigation support (Surface Duo)
18 lines (14 loc) • 350 B
text/typescript
import react, { ReactElement } from "react";
export interface IPaneElementObject {
[key: string]: ReactElement;
}
export interface IPaneElementState {
PaneElements: IPaneElementObject;
}
export interface IPaneElementAction {
type: string;
payload: {
key: string
paneElement: ReactElement;
};
}