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

7 lines
181 B
TypeScript

import React from 'react';
type AppContainerProps = {
children?: React.ReactNode;
};
declare const AppContainer: (props: AppContainerProps) => any;
export default AppContainer;