/** * 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 */ import * as React from 'react'; const object = { string: 'abc', longString: 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKJLMNOPQRSTUVWXYZ1234567890', emptyString: '', number: 123, boolean: true, undefined: undefined, null: null, }; export default function ObjectProps(): React.Node { return ( ); } function ChildComponent(props: any) { return null; }