oak-frontend-base/lib/platforms/web/initialize/AppContainer.d.ts

7 lines
217 B
TypeScript

import React from 'react';
type AppContainerProps = {
children?: React.ReactNode;
};
declare const AppContainer: (props: AppContainerProps) => import("react/jsx-runtime").JSX.Element;
export default AppContainer;