4 lines
213 B
TypeScript
4 lines
213 B
TypeScript
import * as React from 'react';
|
|
import { InitialProps } from './withExpoRoot.types';
|
|
export default function withExpoRoot<P extends InitialProps>(AppRootComponent: React.ComponentType<P>): React.ComponentType<P>;
|