10 lines
604 B
TypeScript
10 lines
604 B
TypeScript
import React, { PropsWithChildren } from 'react';
|
|
import { ServerDataLoaderData } from '../loaders/ServerDataLoaderContext';
|
|
/**
|
|
* Root style-reset for full-screen React Native web apps with a root `<ScrollView />` should use the following styles to ensure native parity. [Learn more](https://necolas.github.io/react-native-web/docs/setup/#root-element).
|
|
*/
|
|
export declare function ScrollViewStyleReset(): React.JSX.Element;
|
|
export declare function InnerRoot({ children, loadedData, }: PropsWithChildren<{
|
|
loadedData: ServerDataLoaderData;
|
|
}>): React.JSX.Element;
|
|
//# sourceMappingURL=html.d.ts.map
|