UNPKG

@edancerys/ts-react-components-lib

Version:
9 lines (8 loc) 264 B
import React, { ReactNode } from 'react'; export interface PageWrapperProps { backgroundColor?: string; padding?: string; children?: ReactNode; onScroll?: (res?: any) => void; } export declare const PageWrapper: React.FC<PageWrapperProps>;