UNPKG

@ssgoi/react

Version:

React bindings for SSGOI - Native app-like page transitions for React applications

9 lines (8 loc) 228 B
import { default as React, ReactNode } from 'react'; import { SsgoiConfig } from './types'; interface SsgoiProps { config: SsgoiConfig; children: ReactNode; } export declare const Ssgoi: React.FC<SsgoiProps>; export {};