/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow * @format */ 'use strict'; import type {RNTesterModule} from '../types/RNTesterTypes'; import RNTesterModuleContainer from './RNTesterModuleContainer'; const React = require('react'); const createExamplePage = function ( title: ?string, exampleModule: RNTesterModule, ): React.ComponentType { class ExamplePage extends React.Component<{...}> { render(): React.Node { return ; } } return ExamplePage; }; module.exports = createExamplePage;